diff options
| author | Ray <[email protected]> | 2022-08-02 21:10:35 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-08-02 21:10:35 +0200 |
| commit | 66108c47d93c1362e72f0aec9d5177518ced01db (patch) | |
| tree | f5205ee21b3af58563fbe2141c14081a48c2b4d5 /parser | |
| parent | 75c8df348faffea1ef57d668313a46bbce5eff19 (diff) | |
| download | raylib-66108c47d93c1362e72f0aec9d5177518ced01db.tar.gz raylib-66108c47d93c1362e72f0aec9d5177518ced01db.zip | |
Update raylib_parser.c
Diffstat (limited to 'parser')
| -rw-r--r-- | parser/raylib_parser.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/parser/raylib_parser.c b/parser/raylib_parser.c index 6369126f..5a9ef510 100644 --- a/parser/raylib_parser.c +++ b/parser/raylib_parser.c @@ -1070,7 +1070,7 @@ static void ShowCommandLineInfo(void) printf("//////////////////////////////////////////////////////////////////////////////////\n\n"); printf("USAGE:\n\n"); - printf(" > raylib_parser [--help] [--input <filename.h>] [--output <filename.ext>] [--format <type>] [--define <DEF>]\n"); + printf(" > raylib_parser [--help] [--input <filename.h>] [--output <filename.ext>] [--format <type>]\n"); printf("\nOPTIONS:\n\n"); printf(" -h, --help : Show tool version and command line usage help\n\n"); @@ -1081,10 +1081,10 @@ static void ShowCommandLineInfo(void) printf(" NOTE: If not specified, defaults to: raylib_api.txt\n\n"); printf(" -f, --format <type> : Define output format for parser data.\n"); printf(" Supported types: DEFAULT, JSON, XML, LUA\n\n"); - printf(" -d, --define <DEF> : Define functions define (i.e. RLAPI for raylib.h, RMDEF for raymath.h, etc.)\n"); - printf(" NOTE: If not specified, defaults to: RLAPI\n\n"); + printf(" -d, --define <DEF> : Define functions specifiers (i.e. RLAPI for raylib.h, RMDEF for raymath.h, etc.)\n"); + printf(" NOTE: If no specifier defined, defaults to: RLAPI\n\n"); printf(" -t, --truncate <after> : Define string to truncate input after (i.e. \"RLGL IMPLEMENTATION\" for rlgl.h)\n"); - printf(" NOTE: If not specified input is not truncated.\n\n"); + printf(" NOTE: If not specified, the full input file is parsed.\n\n"); printf("\nEXAMPLES:\n\n"); printf(" > raylib_parser --input raylib.h --output api.json\n"); |
