docs(char): moving the actual documentation on the header

- The documentation on the header allow u to see on the files where the
header is inclued
This commit is contained in:
Raphael 2025-09-05 16:28:33 +02:00
parent 78c37163f2
commit 63c1dea7a2
No known key found for this signature in database
8 changed files with 56 additions and 50 deletions

View file

@ -6,18 +6,12 @@
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/06 12:47:28 by rparodi #+# #+# */
/* Updated: 2025/09/04 18:12:52 by rparodi ### ########.fr */
/* Updated: 2025/09/05 16:01:38 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "char.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))