cstring.h 261 B

1234567891011121314
  1. #ifndef TOOLBOX_CSTRING_H
  2. #define TOOLBOX_CSTRING_H
  3. #include <stddef.h>
  4. __attribute__((__pure__))
  5. size_t
  6. cstring_len(const char *cstring);
  7. __attribute__((__pure__))
  8. _Bool
  9. cstring_equal(const char *restrict cstring_1, const char *restrict cstring_2);
  10. #endif