style : norming all the header (sorted the enum)

This commit is contained in:
Raphael 2024-09-27 22:37:41 +02:00
parent 1ba78fe873
commit 58abb9b168
4 changed files with 68 additions and 8 deletions

View file

@ -1,24 +0,0 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* what_is_it.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/09/27 11:46:45 by rparodi #+# #+# */
/* Updated: 2024/09/27 12:48:18 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "me/vec/vec_token.h"
#include "parser/token.h"
#include "me/string/string.h"
#include "me/types.h"
#include <stdio.h>
bool is_quote(char c)
{
if (c == '"' || c == '\'')
return (true);
return (false);
}