diff options
Diffstat (limited to 'spat.h')
-rw-r--r-- | spat.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,9 @@ -/* $Header: spat.h,v 1.0 87/12/18 13:06:10 root Exp $ +/* $Header: spat.h,v 1.0.1.1 88/02/02 11:24:37 root Exp $ * * $Log: spat.h,v $ + * Revision 1.0.1.1 88/02/02 11:24:37 root + * patch13: added flag for stripping leading spaces on split. + * * Revision 1.0 87/12/18 13:06:10 root * Initial revision * @@ -20,6 +23,7 @@ struct scanpat { #define SPAT_USE_ONCE 2 /* use pattern only once per article */ #define SPAT_SCANFIRST 4 /* initial constant not anchored */ #define SPAT_SCANALL 8 /* initial constant is whole pat */ +#define SPAT_SKIPWHITE 16 /* skip leading whitespace for split */ EXT SPAT *spat_root; /* list of all spats */ EXT SPAT *curspat; /* what to do \ interps from */ |