Clean up RCS ids
[projects/cmucl/cmucl.git] / src / lisp / parse.h
CommitLineData
eeab7066
RT
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*/
e67c0397 7
8#ifndef _PARSE_H_
9#define _PARSE_H_
10
62957726 11
12/* All parse routines take a char ** as their only argument */
13
14extern boolean more_p(char **ptr);
15extern char *parse_token(char **ptr);
16extern lispobj parse_lispobj(char **ptr);
17extern char *parse_addr(char **ptr);
18extern long parse_number(char **ptr);
e67c0397 19
20#endif /* _PARSE_H_ */