pike.git
/
src
/
builtin.cmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/builtin.cmod:109:
*/ PIKEFUN int trace(int t) efun; optflags OPT_SIDE_EFFECT; { pop_n_elems(args); push_int(t_flag); t_flag=t; }
-
/*!
+
/*!
@decl string ctime(int timestamp)
+
*!
*! Convert the output from a previous call to @[time()] into a readable *! string containing the current year, month, day and time. *! *! @seealso *! @[time()], @[localtime()], @[mktime()], @[gmtime()] */ PIKEFUN string ctime(int timestamp) efun; optflags OPT_TRY_OPTIMIZE; {
pike.git/src/builtin.cmod:264:
*! Three return values are possible: *! @int *! @value 8 *! The string @[s] only contains characters <= 255. *! @value 16 *! The string @[s] only contains characters <= 65535. *! @value 32 *! The string @[s] contains characters >= 65536. *! @endint */
-
PIKEFUN int(8..8)|int(16..16)|int(32..32) string_width(string s)
+
PIKEFUN int(8
..
8)|int(16
..
16)|int(32
..
32) string_width(string s)
errname String.width; optflags OPT_TRY_OPTIMIZE; { RETURN 8 * (1 << s->size_shift); } /*! @decl mixed m_delete(object|mapping map, mixed index) *! *! If @[map] is an object that implements @[lfun::_m_delete()], *! that function will be called with @[index] as the signle argument.