Lines Matching defs:localtime
1 package Time::localtime 1.04;
13 our @EXPORT = qw(localtime ctime);
32 sub localtime :prototype(;$) { populate CORE::localtime(@_ ? shift : time) }
33 sub ctime :prototype(;$) { scalar CORE::localtime(@_ ? shift : time) }
39 Time::localtime - by-name interface to Perl's built-in localtime() function
43 use Time::localtime;
44 printf "Year is %d\n", localtime->year() + 1900;
48 use Time::localtime;
54 This module's default exports override the core localtime() function,
68 scalar sense of the original CORE::localtime() function.