strftime.h 437 B

1234567891011121314151617181920212223
  1. /*
  2. * strftime.h
  3. * header file for strftime.c
  4. *
  5. */
  6. #ifndef _EGG_COMPAT_STRFTIME_H_
  7. #define _EGG_COMPAT_STRFTIME_H_
  8. #ifdef HAVE_CONFIG_H
  9. # include "config.h"
  10. #endif
  11. #include <time.h>
  12. /* Use the system libraries version of strftime() if available. Otherwise
  13. * use our own.
  14. */
  15. #ifndef HAVE_STRFTIME
  16. size_t strftime(char *s, size_t maxsize, const char *format, const struct tm *tp);
  17. #endif
  18. #endif /* !_EGG_COMPAT_STRFTIME_H_ */