Clib.h 402 B

1234567891011121314151617
  1. #include <stdio.h>
  2. extern char
  3. *strcpy(char *, const char *),
  4. *strcat(char *, const char *),
  5. *strchr(const char *, int);
  6. extern int
  7. strcmp(const char *, const char *);//,
  8. //strlen(const char *); // marked by tyhuang, redefined by the c-library
  9. extern void
  10. *memcpy(void *, const void *, size_t),
  11. *memmove(void *, const void *, size_t);
  12. extern int
  13. memcmp(const void *, const void *, size_t);