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:47:28 by rparodi #+# #+# */
/* Updated: 2023/11/07 10:38:08 by rparodi ### ########.fr */
/* Updated: 2024/10/31 12:54:42 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/**
* @brief Check if the character is alpha-numeric
*
* @param c the character
* @return the character if alphanumeric or 0 if not
*/
int ft_isalnum(int c)
{
if (ft_isalpha(c) || ft_isdigit(c))