docs: Adding the char/ and convert/ documentation folder

This commit is contained in:
Raphael 2024-10-31 14:51:47 +01:00
parent a5fe7484a1
commit 5a68f60c5d
11 changed files with 120 additions and 9 deletions

View file

@ -6,12 +6,18 @@
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/06 12:44:28 by rparodi #+# #+# */
/* Updated: 2023/11/07 10:35:36 by rparodi ### ########.fr */
/* Updated: 2024/10/31 12:49:05 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/**
* @brief Check if the character is alpha numeric
*
* @param c the character
* @return the character if numeric or 0 if not
*/
int ft_isdigit(int c)
{
if (c >= '0' && c <= '9')