Files
blankos/src/libc/ctype.h
2024-08-24 17:23:26 +02:00

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