string.h 153 B

1234567891011
  1. #ifdef STRING_H
  2. #define STRING_H
  3. int strlen(const char *a);
  4. int strcmp(const char *a, const char *b);
  5. void *memset(void *p, int c, size_t s);
  6. #endif