cstring.h 281 B

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