3 This code was written as part of the CMU Common Lisp project at
4 Carnegie Mellon University, and has been placed in the public domain.
12 /* All parse routines take a char ** as their only argument */
14 extern boolean more_p(char **ptr);
15 extern char *parse_token(char **ptr);
16 extern lispobj parse_lispobj(char **ptr);
17 extern char *parse_addr(char **ptr);
18 extern long parse_number(char **ptr);
20 #endif /* _PARSE_H_ */