1
0
Fork 0
lesson-lisp/ctype.h

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