X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcommon%2Fcmdline.h;h=6791c4be3a002682ec64ea4e71aabbcd4f70cd7d;hb=a8698b30e85941f1ee9a74a6135eed63ec84bc69;hp=ce8f1e1ba9b1fa1bc92e38aafaed64ee992ec395;hpb=ebfed0b5dff121b910f1c23eeccad991693491f3;p=cc65 diff --git a/src/common/cmdline.h b/src/common/cmdline.h index ce8f1e1ba..6791c4be3 100644 --- a/src/common/cmdline.h +++ b/src/common/cmdline.h @@ -71,7 +71,7 @@ struct LongOpt { -void InitCmdLine (unsigned* aArgCount, char** aArgVec[], const char* aProgName); +void InitCmdLine (int* aArgCount, char** aArgVec[], const char* aProgName); /* Initialize command line parsing. aArgVec is the argument array terminated by * a NULL pointer (as usual), ArgCount is the number of valid arguments in the * array. Both arguments are remembered in static storage. @@ -86,12 +86,12 @@ void NeedArg (const char* Opt) attribute ((noreturn)); void InvDef (const char* Def) attribute ((noreturn)); /* Print an error about an invalid definition and die */ -const char* GetArg (int* ArgNum, unsigned Len); +const char* GetArg (unsigned* ArgNum, unsigned Len); /* Get an argument for a short option. The argument may be appended to the * option itself or may be separate. Len is the length of the option string. */ -void LongOption (int* ArgNum, const LongOpt* OptTab, unsigned OptCount); +void LongOption (unsigned* ArgNum, const LongOpt* OptTab, unsigned OptCount); /* Handle a long command line option */