mirror of
https://github.com/gbdk-2020/gbdk-2020.git
synced 2026-03-06 15:29:00 +01:00
8 lines
183 B
C
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;
|
|
}
|