ft_isalnum - kibotrel/42-Libft GitHub Wiki

int     ft_isalnum(int c)

Description :

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

Return Value :

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

Source code