Files
gbdk-2020/gbdk-lib/libc/isspace.c
2022-02-20 00:56:40 +03:00

8 lines
183 B
C

#include <ctype.h>
#include <stdbool.h>
#include <stdint.h>
bool isspace(char c) {
return (((uint8_t)c == ' ') || ((uint8_t)c == '\t') || ((uint8_t)c == '\n')) ? true : false;
}