pike.git
/
src
/
builtin.cmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/builtin.cmod:114:
#endif #define MODIFY(X) do{ THIS->modified = 1;THIS->t.X; }while(0) #define FIX_THIS() do { \ if(THIS->modified){ \ THIS->unix_time = mktime_zone( &THIS->t ); \ THIS->modified = 0; \ } \ } while(0)
+
#ifdef HAVE_STRPTIME
/* *! @decl int(0..1) strptime( string(1..255) format, string(1..255) data ) *! *! Parse the given @[data] using the format in @[format] as a date. *! *! %% The % character. *! *! %a or %A *! The weekday name according to the C locale, in abbreviated *! form or the full name.
pike.git/src/builtin.cmod:535:
EXIT { if( THIS->set_zone ) free_string( THIS->set_zone ); } } #undef FIX_THIS #ifdef STRUCT_TM_HAS___TM_GMTOFF #undef tm_zone #endif
+
#endif
/*! @endmodule */ /*! @module Pike */ /*! @decl array(array(int|string|type)) describe_program(program p) *! @belongs Debug *! *! Debug function for showing the symbol table of a program.