Libft(20) - isprint
Libft(20) - isprint ISPRINT(3) BSD Library Functions Manual ISPRINT(3) NAME isprint -- printing character test (space character inclusive) LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include int isprint(int c); DESCRIPTION The isprint() function tests for any printing character, including space (` '). The value of the argument must be representable as an unsigned char or the value of EOF. I..
2021.06.26