/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* pf_isdigit.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tmaze +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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'); }