diff options
author | Karl Williamson <khw@cpan.org> | 2020-08-27 09:42:01 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-09-05 17:31:10 -0600 |
commit | 59e77c34ccc302b2ce084881d16fff7e91f4abf5 (patch) | |
tree | ab5c7274bb1cb21b7703267e772941c3fc798787 /util.c | |
parent | ca336c50d51a55c35bc2a7636ff67f8e3ae492dd (diff) | |
download | perl-59e77c34ccc302b2ce084881d16fff7e91f4abf5.tar.gz |
Document mini_mktime
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -3802,8 +3802,12 @@ Perl_init_tm(pTHX_ struct tm *ptm) /* see mktime, strftime and asctime */ } /* - * mini_mktime - normalise struct tm values without the localtime() - * semantics (and overhead) of mktime(). +=for apidoc_section Time +=for apidoc mini_mktime +normalise S<C<struct tm>> values without the localtime() semantics (and +overhead) of mktime(). + +=cut */ void Perl_mini_mktime(struct tm *ptm) |