summaryrefslogtreecommitdiff
path: root/hitomezashi_cli.h
diff options
context:
space:
mode:
authoruntir_l <87096069+untir-l@users.noreply.github.com>2022-02-18 14:05:08 +0000
committeruntir-l <87096069+untir-l@users.noreply.github.com>2022-02-25 09:56:49 +0000
commit581bc2dd768ca0af390b9abb41a5c89f1bca19e3 (patch)
tree2b8ef613b6448099852c9bf3487915c13d3ceea7 /hitomezashi_cli.h
parent1bc2a436583b0e898decf13e695a1908a894a38c (diff)
downloadhitomezashi-581bc2dd768ca0af390b9abb41a5c89f1bca19e3.tar
hitomezashi-581bc2dd768ca0af390b9abb41a5c89f1bca19e3.tar.gz
hitomezashi-581bc2dd768ca0af390b9abb41a5c89f1bca19e3.zip
Reorganise CLI and lib into separate dirs, add doc comments for Doxygen
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