pike.git
/
src
/
modules
/
_Roxen
/
roxen.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/_Roxen/roxen.c:42:
#define FLAG_THROW_ERROR 1 #define FLAG_KEEP_CASE 2 #define FLAG_NO_FOLD 4 #define THP ((struct header_buf *)Pike_fp->current_storage) struct header_buf { unsigned char *headers; /* Buffer containing the data so far. */ unsigned char *pnt; /* End of headers. */ ptrdiff_t hsize, left; /* Size of buffer, amount remaining. */
-
int slash_n, tslash_n, spc; /* Number of nl,
consecutive
nl, spaces. */
+
int slash_n, tslash_n, spc; /* Number of
consecutive
nl, nl, spaces. */
int mode; }; static void f_hp_init( struct object *UNUSED(o) ) { THP->headers = NULL; THP->pnt = NULL; THP->hsize = 0; THP->left = 0; THP->spc = THP->slash_n = THP->tslash_n = 0;