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