Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
isspace.c
Go to the documentation of this file.
1 // Pulled from musl libc, locale support removed
2 
3 #include <ctype.h>
4 
5 int isspace(int c)
6 {
7  return c == ' ' || (unsigned)c - '\t' < 5;
8 }
int isspace(int c)
Checks if the given character is a whitespace character.
Definition: isspace.c:5