Clean up RCS ids
[projects/cmucl/cmucl.git] / src / lisp / parse.h
1 /*
2
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.
5
6 */
7
8 #ifndef _PARSE_H_
9 #define _PARSE_H_
10
11
12 /* All parse routines take a char ** as their only argument */
13
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);
19
20 #endif /* _PARSE_H_ */