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

24
parser/src/dollar.c Normal file
View file

@ -0,0 +1,24 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* dollar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/09/27 22:18:46 by rparodi #+# #+# */
/* Updated: 2024/09/27 22:20:40 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_dollar(char c)
{
if (c == '$')
return (true);
return (false);
}