Libft(18) - isalnum
Libft(18) - isalnum ISALNUM(3) BSD Library Functions Manual ISALNUM(3) NAME isalnum -- alphanumeric character test LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include int isalnum(int c); DESCRIPTION The isalnum() function tests for any character for which isalpha(3) or isdigit(3) is true. The value of the argument must be representable as an unsigned char or the value of EOF. In the ASCII c..
2021.06.26