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

MySQL数据库

开发平台:

Visual C++

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