__string.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #ifndef _SYS_STDSYMS_INCLUDED
  2. #endif
  3. #ifndef _SIZE_T
  4. #define _SIZE_T
  5. typedef pthread_size_t  size_t;
  6. #endif
  7. /* Non-standard SunOS 4.x string routines. */
  8. #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
  9. __BEGIN_DECLS
  10. int  bcmp __P_((const void *, const void *, size_t));
  11. void  bcopy __P_((const void *, void *, size_t));
  12. void  bzero __P_((void *, size_t));
  13. char *index __P_((const char *, int));
  14. char *rindex __P_((const char *, int));
  15. char *strdup __P_((const char *));
  16. __END_DECLS
  17. #endif