|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T a
Length: 2710 (0xa96) Types: TextFile Names: »ap_lex.h«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« └─⟦e5a54fb17⟧ └─⟦this⟧ »pp-5.0/h/ap_lex.h«
/* ap_lex.h: lexical symbols for address parser */ /* * @(#) $Header: /cs/research/pp/hubris/pp-beta/h/RCS/ap_lex.h,v 5.0 90/09/20 16:49:37 pp Exp Locker: pp $ * * $Log: ap_lex.h,v $ * Revision 5.0 90/09/20 16:49:37 pp * rcsforce : 5.0 public release * * */ #ifndef _H_AP_LEX #define _H_AP_LEX #define LT_EOL 0 /* New-Line */ #define LT_SPC 0 /* Space and tab */ #define LT_ERR 1 /* Illegal chars (control chars) */ #define LT_EOD 2 /* End of Data (null) */ #define LT_COM 3 /* , */ #define LT_AT 4 /* @ */ #define LT_COL 5 /* : */ #define LT_SEM 6 /* ; */ #define LT_LES 7 /* < */ #define LT_GTR 8 /* > */ #define LT_SQT 9 /* \ (only in quoted strings) */ #define LT_LTR 10 /* alphabetics, numbers, and others */ #define LT_XTR 10 /* alphabetics, numbers, and others */ #define LT_NUM 10 /* alphabetics, numbers, and others */ #define LT_LPR 11 /* ( */ #define LT_RPR 12 /* ) */ #define LT_QOT 13 /* " */ #define LT_LSQ 14 /* [ */ #define LT_RSQ 15 /* ] */ #define LV_EOD 0 /* End of Data */ #define LV_ERROR 1 /* These Values go with the above Types */ #define LV_COMMA 2 /* , */ #define LV_AT 3 /* @ */ #define LV_COLON 4 /* : */ #define LV_SEMI 5 /* ; */ #define LV_COMMENT 6 /* (text text text) */ #define LV_LESS 7 /* < */ #define LV_GRTR 8 /* > */ #define LV_WORD 9 /* atom / string */ #define LV_FROM 10 /* << */ #define LV_DLIT 11 /* [text text text] */ #endif