summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-03-30 20:57:33 +0200
committerGitHub <[email protected]>2020-03-30 20:57:33 +0200
commit373136c058b02f3cd1e545e64ea8a2891a6b43a6 (patch)
tree70d25aa4b62621b7dd2bf9aaf75618652707697f
parentfd2ac8139d488472b85eb0594dfcbfa0256a5272 (diff)
downloadSTC-modified-373136c058b02f3cd1e545e64ea8a2891a6b43a6.tar.gz
STC-modified-373136c058b02f3cd1e545e64ea8a2891a6b43a6.zip
Add files via upload
-rw-r--r--c_lib/cgetopt.h2
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) {