11 lines
192 B
C
11 lines
192 B
C
#ifndef __LISP_CTYPE_H__
|
|
#define __LISP_CTYPE_H__
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool is_space(char chr);
|
|
bool is_ident_head(char chr);
|
|
bool is_ident_tail(char chr);
|
|
bool is_number(char chr);
|
|
|
|
#endif
|