Standard C Library Functions Table
Standard C Library Functions Table
Name
Last Updated: 2023-04-11
This table briefly describes the C library functions, listed in alphabetical order. This table provides the include file
name and the function prototype for each function.
System
Function Include Function Prototype Description
File
Tests if c is a printable
isgraph ctype.h int isgraph(int c);
character excluding the space.
System
Function Include Function Prototype Description
File
Tests if c is a printable
isprint ctype.h int isprint(int c);
character including the space.
Tests if c is a punctuation
ispunct ctype.h int ispunct(int c);
character.
Tests if c is a whitespace
isspace ctype.h int isspace(int c);
character.
putc1 stdio.h int putc(int c, FILE *stream); Prints c to the output stream.
strlen string.h size_t strlen(const char *string); Calculates the length of string.