| Commit | Line | Data |
|---|---|---|
| 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 | */ | |
| 62957726 | 7 | |
| 8 | #ifndef _PRINT_H_ | |
| 9 | #define _PRINT_H_ | |
| 10 | ||
| 11 | #include "lisp.h" | |
| 12 | ||
| 13 | extern char *lowtag_Names[], *subtype_Names[]; | |
| 14 | ||
| 15 | extern void print(lispobj obj); | |
| 16 | extern void brief_print(lispobj obj); | |
| 17 | extern void reset_printer(void); | |
| 18 | ||
| e67c0397 | 19 | #endif /* _PRINT_H_ */ |