home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c060 / 5.ddi / STRING.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  2.2 KB  |  61 lines

  1. /*    string.h
  2.  
  3.     Definitions for memory and string functions.
  4.  
  5.     Copyright (c) Borland International 1987,1988
  6.     All Rights Reserved.
  7. */
  8. #if __STDC__
  9. #define _Cdecl
  10. #else
  11. #define _Cdecl    cdecl
  12. #endif
  13.  
  14. #ifndef _SIZE_T
  15. #define _SIZE_T
  16. typedef unsigned size_t;
  17. #endif
  18.  
  19. void    *_Cdecl memccpy    (void *dest, const void *src, int c, size_t n);
  20. void    *_Cdecl memchr    (const void *s, int c, size_t n);
  21. int     _Cdecl memcmp    (const void *s1, const void *s2, size_t n);
  22. void    *_Cdecl memcpy    (void *dest, const void *src, size_t n);
  23. int     _Cdecl memicmp    (const void *s1, const void *s2, size_t n);
  24. void    *_Cdecl memmove    (void *dest, const void *src, size_t n);
  25. void    *_Cdecl memset    (void *s, int c, size_t n);
  26. void     _Cdecl movedata(unsigned srcseg, unsigned srcoff, unsigned dstseg,
  27.              unsigned dstoff, size_t n);
  28. char    *_Cdecl stpcpy    (char *dest, const char *src);
  29. char    *_Cdecl strcat    (char *dest, const char *src);
  30. char    *_Cdecl strchr    (const char *s, int c);
  31. int     _Cdecl strcmp    (const char *s1, const char *s2);
  32. char    *_Cdecl strcpy    (char *dest, const char *src);
  33. size_t     _Cdecl strcspn    (const char *s1, const char *s2);
  34. char    *_Cdecl strdup    (const char *s);
  35. char    *_Cdecl strerror(int errnum);
  36. int     _Cdecl stricmp    (const char *s1, const char *s2);
  37. size_t     _Cdecl strlen    (const char *s);
  38. char    *_Cdecl strlwr    (char *s);
  39. char    *_Cdecl strncat    (char *dest, const char *src, size_t maxlen);
  40. int     _Cdecl strncmp    (const char *s1, const char *s2, size_t maxlen);
  41. char    *_Cdecl strncpy    (char *dest, const char *src, size_t maxlen);
  42. int     _Cdecl strnicmp(const char *s1, const char *s2, size_t maxlen);
  43. char    *_Cdecl strnset    (char *s, int ch, size_t n);
  44. char    *_Cdecl strpbrk    (const char *s1, const char *s2);
  45. char    *_Cdecl strrchr    (const char *s, int c);
  46. char    *_Cdecl strrev    (char *s);
  47. char    *_Cdecl strset    (char *s, int ch);
  48. size_t     _Cdecl strspn    (const char *s1, const char *s2);
  49. char    *_Cdecl strstr    (const char *s1, const char *s2);
  50. char    *_Cdecl strtok    (char *s1, const char *s2);
  51. char    *_Cdecl strupr    (char *s);
  52.  
  53. /* compatibility with other compilers */
  54.  
  55. #define strcmpi(s1,s2)        stricmp(s1,s2)
  56. #define strncmpi(s1,s2,n)    strnicmp(s1,s2,n)
  57.  
  58. #if !__STDC__
  59. char    *_Cdecl _strerror (const char *s);
  60. #endif
  61.