15 lines
266 B
C
15 lines
266 B
C
// Ctype implementation for blankos/libc header
|
|
// Author: xamidev
|
|
// Licensed under the Unlicense. See the repo below.
|
|
// https://github.com/xamidev/blankos
|
|
|
|
#ifndef CTYPE_H
|
|
#define CTYPE_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool isdigit(char c);
|
|
bool isspace(char c);
|
|
|
|
#endif
|