home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / m / mar93.zip / 1103018B < prev    next >
Text File  |  1993-01-06  |  207b  |  10 lines

  1. /* strftime function */
  2. #include "xtime.h"
  3.  
  4. size_t (strftime)(char *s, size_t n,
  5.     const char *fmt, const struct tm *t)
  6.     {    /* format time to string */
  7.     return (_Strftime(s, n, fmt, t, &_Times));
  8.     }
  9.  
  10.