19 lines
976 B
C
19 lines
976 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* pf_isdigit.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2019/02/11 07:43:44 by tmaze #+# #+# */
|
|
/* Updated: 2019/02/11 07:53:22 by tmaze ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libftprintf.h"
|
|
|
|
int pf_isdigit(int c)
|
|
{
|
|
return (c >= '0' && c <= '9');
|
|
}
|