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