summarylogtreecommitdiffstats
path: root/handle.h
diff options
context:
space:
mode:
Diffstat (limited to 'handle.h')
-rw-r--r--handle.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/handle.h b/handle.h
deleted file mode 100644
index 5a8f6806628e..000000000000
--- a/handle.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef HANDLE_H
-#define HANDLE_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-char* filename;
-
-char* setDefaultArgument(char* helpText);
-
-char* addArgument(char* helpText, int numArguments, char* firstCall, char* secondCall);
-
-void printUsage();
-
-int error(char* message);
-int handle(int argc, char** argv);
-
-int terminate;
-
-#define TAKES_NO_ARGUMENTS 0
-#define TAKES_ONE_ARGUMENT 1
-
-void sig_handler(int signo);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // HANDLE_H