numlib.h
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. #ifndef numlib_h
  2. #define numlib_h
  3. /*
  4. ** Copyright 1998 - 1999 Double Precision, Inc.
  5. ** See COPYING for distribution information.
  6. */
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. static const char numlib_h_rcsid[]="$Id: numlib.h,v 1.2 1999/12/06 13:23:18 mrsam Exp $";
  11. #if HAVE_CONFIG_H
  12. #include "config.h"
  13. #endif
  14. #include <sys/types.h>
  15. #include <time.h>
  16. #define NUMBUFSIZE 60
  17. /* Convert various system types to decimal */
  18. char *str_time_t(time_t, char *);
  19. char *str_off_t(off_t, char *);
  20. char *str_pid_t(pid_t, char *);
  21. char *str_ino_t(ino_t, char *);
  22. char *str_uid_t(uid_t, char *);
  23. char *str_gid_t(gid_t, char *);
  24. char *str_size_t(size_t, char *);
  25. /* Convert selected system types to hex */
  26. char *strh_time_t(time_t, char *);
  27. char *strh_pid_t(pid_t, char *);
  28. char *strh_ino_t(ino_t, char *);
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32. #endif