C/C++
stevens.lst
Associated article: Text Searching, C++ and OOPS, and ANSI Strings
Tags: C/C++
_C PROGRAMMING COLUMN_
by Al Stevens
[LISTING ONE]
/* ----------- textsrch.h ---------- */
#define MXTOKS 25 /* maximum number of tokens */
#define OK 0
#define ERROR !OK
struct postfix {
char pfix; /* tokens in postfix notation */
char *pfixop; /* operand strings */
};
extern struct postfix pftokens[];
extern ...


