#ifndef TOOLBOX_CSTRING_H #define TOOLBOX_CSTRING_H #include #include __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