summaryrefslogtreecommitdiff
path: root/hitomezashi_cli.h
diff options
context:
space:
mode:
Diffstat (limited to 'hitomezashi_cli.h')
-rw-r--r--hitomezashi_cli.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/hitomezashi_cli.h b/hitomezashi_cli.h
deleted file mode 100644
index 0aad37b..0000000
--- a/hitomezashi_cli.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef HITOMEZASHI_CLI_H
-#define HITOMEZASHI_CLI_H
-
-#include <stddef.h>
-
-enum Hitomezashi_Cli_Exit_Code {
- Hitomezashi_Cli_Exit_Code_Success = 0,
- Hitomezashi_Cli_Exit_Code_Err_Handle_Args = 1,
- Hitomezashi_Cli_Exit_Code_Err_Print_Help = 2,
- Hitomezashi_Cli_Exit_Code_Err_Sdl_Init = 3,
- Hitomezashi_Cli_Exit_Code_Err_State_Init = 4,
- Hitomezashi_Cli_Exit_Code_Err_Save_Image = 5,
-};
-
-void hitomezashi_cli_handle_args(char **out_file_path, int *x_pattern_len,
- int *y_pattern_len, char **x_pattern,
- char **y_pattern, int *gap, int *thickness,
- int argc, char **argv);
-void hitomezashi_cli_help(void);
-char *hitomezashi_cli_ascii_binary_str_to_ints(char *ascii_str, size_t n);
-
-#endif // HITOMEZASHI_CLI_H