Files
blankos/libk/ctype.h

15 lines
266 B
C

// Ctype implementation for blankos/libk 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