ft_isdigit - kibotrel/42-Libft GitHub Wiki

int     ft_isdigit(int c)

Description :

Checks if the given integer c is an numeric ASCII code or not.

Return Value :

Returns 1 if it's an numeric ASCII code otherwise, 0 is returned.

Source code