pike.git
/
src
/
modules
/
_Roxen
/
roxen.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/_Roxen/roxen.c:1:
/* || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: roxen.c,v 1.
55
2009
/07/
29
15
:
48
:
47
nilsson
Exp $
+
|| $Id: roxen.c,v 1.
56
2010
/07/
27
16
:
46
:
05
mast
Exp $
*/ #define NO_PIKE_SHORTHAND #include "global.h" #include "config.h" #include "machine.h"
pike.git/src/modules/_Roxen/roxen.c:267:
static void f_hp_create( INT32 args ) /*! @decl void create(int throw_errors) */ { if (THP->headers) { free(THP->headers); THP->headers = NULL; }
+
THP->mode = 0;
get_all_args("create",args,".%i",&THP->mode); THP->headers = xalloc( 8192 ); THP->pnt = THP->headers; THP->hsize = 8192; THP->left = 8192; THP->spc = THP->slash_n = 0; pop_n_elems(args); push_int(0); }