*** empty log message ***

This commit is contained in:
erikb
1986-03-10 13:07:55 +00:00
parent d566eb8d63
commit 65c1ca3fd9
105 changed files with 16543 additions and 0 deletions

13
lang/cem/cemcom/input.h Normal file
View File

@@ -0,0 +1,13 @@
/* $Header$ */
/* INPUT PRIMITIVES */
#define LoadChar(dest) ((dest = *ipp++) || (dest = loadbuf()))
#define PushBack() (ipp--)
/* EOF may be defined as -1 in most programs but the character -1 may
be expanded to the int -1 which causes troubles at the indexing in
the class or boolean arrays.
*/
#define EOI (0200)
extern char *ipp;