home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / STRFTIME.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  488b  |  21 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /*
  4. **  STRFTIME.H - For older compilers which lack strftime()
  5. **
  6. **  Note: To avoid name collision with newer compilers, the function name
  7. **        strftime_() is used.
  8. */
  9.  
  10. #ifndef STRFTIME__H
  11. #define STRFTIME__H
  12.  
  13. #include <stddef.h>     /* for size_t */
  14. #include <time.h>       /* for struct tm */
  15.  
  16. size_t strftime_(char *s, size_t maxs, const char *f, const struct tm *t);
  17.  
  18. extern char * tzname_[2];
  19.  
  20. #endif /* STRFTIME__H */
  21.