pike.git/
src/
builtin.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2014-08-26
2014-08-26 23:56:50 by Stephen R. van den Berg <srb@cuci.nl>
329182f09c92fa601832f22100d45c781d9f0a14 (
11
lines) (+
6
/-
5
)
[
Show
|
Annotate
]
Branch:
8.0
Repair and cleanup declarations.
3159:
push_int(ch); }
-
/*! @decl
String.
Buffer `+( string|
String.
Buffer what )
+
/*! @decl Buffer `+( string|Buffer what )
*/ PIKEFUN object `+( string|Buffer what ) rawtype tFunc(tOr(tString, tObjIs_BUFFER), tObjIs_BUFFER);
3176:
RETURN res; }
-
/*! @decl
String.
Buffer `+=( string|
String.
Buffer what )
+
/*! @decl Buffer `+=( string|Buffer what )
*/ PIKEFUN object `+=( string|Buffer what ) rawtype tFunc(tOr(tString, tObjIs_BUFFER), tObjIs_BUFFER);
3185:
REF_RETURN Pike_fp->current_object; }
-
/*! @decl int addat(int(0..) pos, string|
String.
Buffer ... data)
+
/*! @decl int addat(int(0..) pos, string|Buffer ... data)
*! *! Adds @[data] to the buffer, starting at position @[pos]. *! It overwrites existing content at that offset, never truncates the
3201:
*! @seealso *! @[add()] */
-
PIKEFUN int addat(int(0..) pos, string ... arg1 )
+
PIKEFUN int addat(int(0..) pos, string
|Buffer
... arg1 )
rawtype tFuncV(tIntPos, tOr(tString, tObjIs_BUFFER), tIntPos); { struct Buffer_struct *str = THIS;
3268:
RETURN s->len; }
-
/*! @decl int add(string|
String.
Buffer ... data)
+
/*! @decl int add(string|Buffer ... data)
*! *! Adds @[data] to the buffer. *!