home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / miracl / include / string.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-24  |  818 b   |  23 lines

  1. void *memchr(void *buf, int c, int count);
  2. int   memcmp(void *buf1, void *buf2, int n);
  3. void *memcpy(void *buf1, void *buf2, int count);
  4. void *memmove(void *buf1, void *buf2, int count);
  5. void *memset(void *buf, int val, int n);
  6.  
  7. char *strcat(char *buf1,  char *buf2);
  8. char *strchr(char *str, int c);
  9. int   strcmp(char *str1, char *str2);
  10. char *strcpy(char *buf1, char *buf2);
  11. char *strdup(char *str);
  12. int   strlen(char *str);
  13. char *strlwr(char *str);
  14. char *strncat(char *buf1, char *buf2, int n);
  15. int   strncmp(char *buf1, char *buf2, int n);
  16. char *strncpy(char *buf1, char *buf2, int n);
  17. int   strnicmp(char *buf1, char *buf2, int n);
  18. char *strpbrk(char *str1, char *str2);
  19. char *strrchr(char *buf, int c);
  20. char *strrev(char *str);
  21. int   strspn(char *str1, char *str2);
  22. char *strupr(char *str);
  23.