- The documentation on the header allow u to see on the files where the header is inclued
20 lines
1,001 B
C
20 lines
1,001 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isalnum.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/06 12:47:28 by rparodi #+# #+# */
|
|
/* Updated: 2025/09/05 16:01:38 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "char.h"
|
|
|
|
int ft_isalnum(int c)
|
|
{
|
|
if (ft_isalpha(c) || ft_isdigit(c))
|
|
return (1);
|
|
return (0);
|
|
}
|