| Commit | Line | Data |
|---|---|---|
| 62957726 | 1 | /* |
| eeab7066 RT |
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 | */ | |
| 62957726 | 7 | |
| 8 | #ifndef _SEARCH_H_ | |
| 9 | #define _SEARCH_H_ | |
| 10 | ||
| 9a8c1c2f | 11 | extern boolean search_for_type(int type, lispobj ** start, int *count); |
| 12 | extern boolean search_for_symbol(char *name, lispobj ** start, int *count); | |
| 62957726 | 13 | |
| 14 | #endif |