22 lines
995 B
C
22 lines
995 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isdigit.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2020/11/29 00:10:39 by apommier #+# #+# */
|
|
/* Updated: 2020/12/11 18:11:30 by apommier ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_isdigit(int c)
|
|
{
|
|
if (c <= 9 && c >= 0)
|
|
return (1);
|
|
else
|
|
return (0);
|
|
}
|