#ifndef __LISP_CTYPE_H__ #define __LISP_CTYPE_H__ #include bool is_space(char chr); bool is_ident_head(char chr); bool is_ident_tail(char chr); bool is_number(char chr); #endif