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/27 22:18:46 by rparodi #+# #+# */
/* Updated: 2024/09/27 22:20:40 by rparodi ### ########.fr */
/* Updated: 2024/09/28 11:47:09 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -16,6 +16,12 @@
#include "me/types.h"
#include <stdio.h>
/**
* @brief boolean function that's say if it's a dollar or not
*
* @param c character will be checked
* @return true if it's dollar, if not return false
*/
bool is_dollar(char c)
{
if (c == '$')