aboutsummaryrefslogtreecommitdiffstats
path: root/7_2/include/input.h
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov@twistea.su>2024-12-06 15:08:31 +0300
committerjustanothercatgirl <sotov@twistea.su>2024-12-06 15:08:31 +0300
commita470c304199866aa1f3d39ff22ec30734f03d617 (patch)
treeb08858e91b39fc108f2ab9b83c03ef7f881711ba /7_2/include/input.h
parent24b8430fa7a9a81b88c5c172c99bbc9a520ff4ba (diff)
сделал 8 задание))))task8
Diffstat (limited to '7_2/include/input.h')
-rw-r--r--7_2/include/input.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/7_2/include/input.h b/7_2/include/input.h
deleted file mode 100644
index 24285b8..0000000
--- a/7_2/include/input.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef JAC_INPUT_H
-#define JAC_INPUT_H
-
-#include "common.h"
-#include "figure.h"
-
-extern void(*settings_handler)(const char *sett_string);
-
-// пропустить пробелы
-void skipw(char const **s);
-// проспустит цифры
-void skipd(char const **s);
-// проерить наличие символа
-char chktok(char const **str, char tok);
-// прочитать число
-char parsel(char const **str, long *l);
-// прочитать вектор из 2 чисел
-char parsev(char const **str, vector2 *v);
-// прочитать одну фигуру
-struct figure read_figure(const char *str);
-// прочитать целый файл
-struct figure *read_file(const char *path);
-
-#endif // JAC_INPUT_H