Archived
1
0

🏗️」 wip: parsing map nighty percent done

This commit is contained in:
Maelys
2024-09-11 22:20:37 +02:00
parent 7a8d4469d8
commit 18afe25807
6 changed files with 94 additions and 17 deletions

View File

@ -6,7 +6,7 @@
/* By: madumerg <madumerg@42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/09/11 14:20:54 by madumerg #+# #+# */
/* Updated: 2024/09/11 14:31:27 by madumerg ### ########.fr */
/* Updated: 2024/09/11 22:15:23 by madumerg ### ########.fr */
/* */
/* ************************************************************************** */
@ -24,3 +24,11 @@ void convert_white_s(char *str)
i++;
}
}
int verif_char(char c)
{
if (c != '1' && c != '0' && c != 'N' && c != 'S' && c != 'W' && \
c != 'E' && c != ' ')
return (1);
return (0);
}