- #ifndef TOOLBOX_CSTRING_H
- #define TOOLBOX_CSTRING_H
- #include <stddef.h>
- __attribute__((__pure__))
- size_t
- cstring_len(const char *cstring);
- __attribute__((__pure__))
- _Bool
- cstring_equal(const char *restrict cstring_1, const char *restrict cstring_2);
- #endif
|