diff options
author | midipix <writeonce@midipix.org> | 2016-01-10 12:13:33 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-01-10 12:19:44 -0500 |
commit | 4a749a765f6f5a3998d9721e9be5ec3bc52d8a7b (patch) | |
tree | 919da5a8a9b8859b9debc1abbe440ccaf9a905d1 /src/internal/argv | |
parent | 35b2ffd19b71228f056deade21ac1d33027f5fee (diff) | |
download | sofort-4a749a765f6f5a3998d9721e9be5ec3bc52d8a7b.tar.bz2 sofort-4a749a765f6f5a3998d9721e9be5ec3bc52d8a7b.tar.xz |
argv.h: main(): fix signatures.
Diffstat (limited to 'src/internal/argv')
-rw-r--r-- | src/internal/argv/argv.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/internal/argv/argv.h b/src/internal/argv/argv.h index f40cf74..8ae6549 100644 --- a/src/internal/argv/argv.h +++ b/src/internal/argv/argv.h @@ -109,12 +109,12 @@ struct argv_entry { }; struct argv_meta { - const char ** argv; + char ** argv; struct argv_entry * entries; }; struct argv_meta_impl { - const char ** argv; + char ** argv; char * strbuf; struct argv_meta meta; }; @@ -140,7 +140,7 @@ static void argv_usage( const char * mode); static struct argv_meta * argv_get( - const char **, + char **, const struct argv_option[], int flags); @@ -270,12 +270,12 @@ static inline const struct argv_option * option_from_tag( } static void argv_scan( - const char ** argv, + char ** argv, const struct argv_option options[], struct argv_ctx * ctx, struct argv_meta * meta) { - const char ** parg; + char ** parg; const char * ch; const char * val; const struct argv_option * option; @@ -566,7 +566,7 @@ static void argv_show_status( struct argv_meta * meta) { int argc; - const char ** argv; + char ** argv; struct argv_entry * entry; const struct argv_option * option; char short_name[2] = {0}; @@ -615,10 +615,10 @@ static struct argv_meta * argv_free_impl(struct argv_meta_impl * imeta) return 0; } -static struct argv_meta * argv_alloc(const char ** argv, struct argv_ctx * ctx) +static struct argv_meta * argv_alloc(char ** argv, struct argv_ctx * ctx) { struct argv_meta_impl * imeta; - const char ** vector; + char ** vector; char * dst; size_t size; int argc; @@ -657,7 +657,7 @@ static struct argv_meta * argv_alloc(const char ** argv, struct argv_ctx * ctx) } static struct argv_meta * argv_get( - const char * argv[], + char * argv[], const struct argv_option options[], int flags) { |