17 lines
959 B
C
17 lines
959 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isdigit.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tischmid <timo42@proton.me> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/05/03 17:12:29 by tischmid #+# #+# */
|
|
/* Updated: 2023/05/03 19:38:50 by tischmid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
int ft_isdigit(int c)
|
|
{
|
|
return (2048 * (c >= '0' && c <= '9'));
|
|
}
|