comparison src/util.c @ 10636:0f5c5e6fb27f

[gaim-migrate @ 12118] The strftime warnings fiunally got to me, so I made gaim_strftime to work around it. Turns out KingAnt had already discovered this solution for oscar.c but left it #iffed out. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Thu, 24 Feb 2005 01:11:17 +0000
parents 14c32196fcfd
children 9505695acff8
comparison
equal deleted inserted replaced
10635:6895c4212362 10636:0f5c5e6fb27f
571 retval += tzoff; 571 retval += tzoff;
572 572
573 return retval; 573 return retval;
574 } 574 }
575 575
576 size_t gaim_strftime(char *s, size_t max, const char *format, const struct tm *tm)
577 {
578 return strftime(s, max, format, tm);
579 }
576 580
577 /************************************************************************** 581 /**************************************************************************
578 * Markup Functions 582 * Markup Functions
579 **************************************************************************/ 583 **************************************************************************/
580 gboolean 584 gboolean