tgrekov-libft
HIVE libft Oct 2023
Loading...
Searching...
No Matches
ft_isdigit.c
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* ft_isdigit.c :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: tgrekov <tgrekov@student.hive.fi> +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2023/10/23 13:26:17 by tgrekov #+# #+# */
9/* Updated: 2023/11/04 22:24:42 by tgrekov ### ########.fr */
10/* */
11/* ************************************************************************** */
12
26int ft_isdigit(int c)
27{
28 return (c >= '0' && c <= '9');
29}
int ft_isdigit(int c)
Is c a numeric character.
Definition ft_isdigit.c:26