diff options
author | Nikias Bassen | 2019-02-14 00:26:25 +0100 |
---|---|---|
committer | Nikias Bassen | 2019-02-14 00:26:25 +0100 |
commit | 64e88489ee47f4e5dca458970688485a0a165c30 (patch) | |
tree | 6b54866538be3b62dd4e6b4896920c354787ce42 /src/common.h | |
parent | fbaafdaf87cc01197ad86812a46cf17b7b392b8e (diff) | |
download | idevicerestore-64e88489ee47f4e5dca458970688485a0a165c30.tar.gz idevicerestore-64e88489ee47f4e5dca458970688485a0a165c30.tar.bz2 |
Allow .ipsw files or extracted IPSW as source
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h index dd854cb..6c568f8 100644 --- a/src/common.h +++ b/src/common.h @@ -2,8 +2,8 @@ * common.h * Misc functions used in idevicerestore * + * Copyright (c) 2012-2019 Nikias Bassen. All Rights Reserved. * Copyright (c) 2012 Martin Szulecki. All Rights Reserved. - * Copyright (c) 2012 Nikias Bassen. All Rights Reserved. * Copyright (c) 2010 Joshua Hill. All Rights Reserved. * * This library is free software; you can redistribute it and/or @@ -144,6 +144,10 @@ void idevicerestore_progress(struct idevicerestore_client_t* client, int step, d char* strsep(char** strp, const char* delim); #endif +#ifndef HAVE_REALPATH +char* realpath(const char *filename, char *resolved_name); +#endif + void get_user_input(char *buf, int maxlen, int secure); #ifdef __cplusplus |