diff options
author | Timo Sirainen <cras@irssi.org> | 2001-01-14 18:16:39 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-01-14 18:16:39 +0000 |
commit | 93ba91b8ed23284cfe14f5d77d5910e112039424 (patch) | |
tree | a9df37804b004b063156f4c646162cb2fda51f78 /src/core/misc.h | |
parent | d427f741432742e2aba05ac610421c7661ea4a30 (diff) | |
download | irssi-93ba91b8ed23284cfe14f5d77d5910e112039424.zip |
Added my_asctime()
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1114 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/misc.h')
-rw-r--r-- | src/core/misc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/misc.h b/src/core/misc.h index 176c7a3d..22fe9211 100644 --- a/src/core/misc.h +++ b/src/core/misc.h @@ -71,4 +71,7 @@ int dec2octal(int decimal); /* convert all low-ascii (<32) to ^<A..> combinations */ char *show_lowascii(const char *channel); +/* Get time in human readable form with localtime() + asctime() */ +char *my_asctime(time_t t); + #endif |