/* minbufsize.h - to be #include'd with "inners".c and outer.c Define minimum values, both for default and for sanity Values are those of 23 Jan 96 outerw (wjs) ***** PLEASE DO NOT EDIT THIS FILE Use it as your default minima. To raise the values, use an 'IOBUF_INCLUDE' compile option file as: cc -c -DIOBUF_INCLUDE='"/data/myfiles/mybufs.h"' def.c */ /* used to save HTML QUERY_STRING value */ #define MINPARSAVSIZE 1024 /* used for storing HTML PATH_INFO environment value */ #define MINPATHSIZE 1024 /* used to store the value of input strings between parameter separators this could include an attribute string */ #define MINTOKEN 80 /* a datum, or value size */ #define MINDATUMSIZE 80 /* size that a parameter name can be */ #define MINVARNAMESIZE 40 /* attribute size: for a single datum all attributes defined */ #define MINATTRSIZE 40 /* size of all attributes for a single parameter, including punctuation */ #define MINTOTATTRSIZE 1024 /* comment lines: for a single comment line, all chars, excl. #, incl nl */ #define MINCOMMENTLINE 80 /* parameters used to limit those displayed or seen as part of object */ #define MINOBJECTPARAMSIZE 80 /* buffer used to output a datum or a comment in output routines */ #define MINOUTBUFSIZE 80 /* used to output a comment or an objectname plus its parameters #define MINOUTVARBUFSIZE 80 /* Get user values, if any, works for either inner.c or outer.c use on compile line as cc -DIOBUF_INCLUDE='"/path/to/include.h"' */ #ifdef IOBUF_INCLUDE #include IOBUF_INCLUDE #endif