diff options
| author | Tyge Løvset <[email protected]> | 2020-03-30 20:57:33 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-03-30 20:57:33 +0200 |
| commit | 373136c058b02f3cd1e545e64ea8a2891a6b43a6 (patch) | |
| tree | 70d25aa4b62621b7dd2bf9aaf75618652707697f | |
| parent | fd2ac8139d488472b85eb0594dfcbfa0256a5272 (diff) | |
| download | STC-modified-373136c058b02f3cd1e545e64ea8a2891a6b43a6.tar.gz STC-modified-373136c058b02f3cd1e545e64ea8a2891a6b43a6.zip | |
Add files via upload
| -rw-r--r-- | c_lib/cgetopt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c_lib/cgetopt.h b/c_lib/cgetopt.h index 53b613f3..ba2d64ff 100644 --- a/c_lib/cgetopt.h +++ b/c_lib/cgetopt.h @@ -155,7 +155,7 @@ static int copt_getopt(copt_t *opt, int argc, char *argv[], {NULL}
};
const char* optstr = "a:b::c";
- printf("args -a arg -b [arg] -c --opt [arg] --foo --bar arg [arguments]\n");
+ printf("program -a arg -b [arg] -c --opt [arg] --foo --bar arg [arguments]\n");
int c;
copt_t opt = copt_init;
while ((c = copt_getopt(&opt, argc, argv, optstr, longopts, true)) != -1) {
|
