1
0

strings.h 471 B

1234567891011121314151617181920212223242526272829
  1. #ifndef _STRINGS_H
  2. #define _STRINGS_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #define __NEED_size_t
  7. #include <bits/alltypes.h>
  8. int bcmp (const void *, const void *, size_t);
  9. void bcopy (const void *, void *, size_t);
  10. void bzero (void *, size_t);
  11. int ffs (int);
  12. char *index (const char *, int);
  13. char *rindex (const char *, int);
  14. int strcasecmp (const char *, const char *);
  15. int strncasecmp (const char *, const char *, size_t);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif