aboutsummaryrefslogtreecommitdiff
path: root/fractal-gen.h
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2016-04-04 18:26:40 +1200
committerDavid Phillips <dbphillipsnz@gmail.com>2016-04-04 18:26:40 +1200
commit88fc89479b339b01bee77c0467cefe05017f4909 (patch)
treec0fff8049fb1bd9a8b13d4b592b8a20567aae2ae /fractal-gen.h
parentfaebfd17d5eaff9f7a3007ea808ec060c69b8ae9 (diff)
downloadfractal-gen-88fc89479b339b01bee77c0467cefe05017f4909.tar.xz
Use getopt(3) to parse arguments instead
Diffstat (limited to 'fractal-gen.h')
-rw-r--r--fractal-gen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fractal-gen.h b/fractal-gen.h
index e0b69a8..a25063f 100644
--- a/fractal-gen.h
+++ b/fractal-gen.h
@@ -50,9 +50,9 @@ double power;
typedef void* (*generator_func)(void *);
-bool args_parse_okay(const int argc, const char **argv);
+bool args_parse_okay(int argc, char **argv);
generator_func select_generator(const char* name);
-
+void show_help();
#include "algorithms.h"