mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
a070b1eb31
This is basically the same concept as lex, except this time it doesn't turn your code inside out, and it generates actual C code to parse the expressions (not tables), and the resulting code is usually about 2 times faster than flex.
14 lines
317 B
Plaintext
14 lines
317 B
Plaintext
--- basics.h.orig Thu May 14 16:35:56 1998
|
|
+++ basics.h Thu May 14 16:36:18 1998
|
|
@@ -6,10 +6,6 @@
|
|
//Initial revision
|
|
//
|
|
|
|
-typedef unsigned int bool;
|
|
-const bool true = (0 == 0);
|
|
-const bool false = (!true);
|
|
-
|
|
typedef unsigned int uint;
|
|
typedef unsigned char uchar, byte;
|
|
typedef unsigned short ushort, word;
|