aboutsummaryrefslogtreecommitdiff
path: root/bsq/srcs/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'bsq/srcs/parse.c')
-rw-r--r--bsq/srcs/parse.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/bsq/srcs/parse.c b/bsq/srcs/parse.c
deleted file mode 100644
index 8c4af3a..0000000
--- a/bsq/srcs/parse.c
+++ /dev/null
@@ -1,42 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* parse.c :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2019/07/19 15:23:43 by cacharle #+# #+# */
-/* Updated: 2019/07/19 15:55:31 by cacharle ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-#include "include.h"
-
-t_bool check_input(char *input)
-{
- char *line;
- int i;
-
- i = 0;
- while (input[i] != '\n')
- i++;
- if (i < 4)
- return (FALSE);
- parsed.fill = input[i--];
- parsed.obstacle = input[i--];
- parsed.empty = input[i--];
- // parsed.size = // atoi smth
- while (*input != '\n')
- input++;
- i = 0;
- while (input[i])
- {
- while (input[i] != '\n')
- {
-
- }
- if (i != parsed.size
-
-
- }
-}