added basic options handling

This commit is contained in:
2018-12-05 18:14:52 +01:00
parent 15dd4f6296
commit 495a7cf3cf
2 changed files with 20 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ int random1000(int foo)
{
int value;
if (verbosity)
fprintf(stderr, "%s(%d)\n", __func__, foo);
fprintf(stderr, ">>> %s(%d)\n", __func__, foo);
value = rand() % 1000;
return value;
}