docs: doxygen for all function in the token

This commit is contained in:
Raphaël 2024-09-28 12:19:55 +02:00
parent e97ff01f8e
commit fe8734ea38
3 changed files with 30 additions and 3 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/09/25 16:27:03 by rparodi #+# #+# */
/* Updated: 2024/09/27 22:29:04 by rparodi ### ########.fr */
/* Updated: 2024/09/28 12:16:45 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -16,7 +16,14 @@
#include "me/vec/vec_token.h"
#include <stdio.h>
#include <stdbool.h>
#include "me/mem/mem.h"
/**
* @brief boolean function that's say if it's a space or not
*
* @param c character will be checked
* @return true if it's space, if not return false
*/
bool is_space(char c)
{
if (c == ' ')