strftime.h
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:0k
源码类别:

SNMP编程

开发平台:

C/C++

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