#ifndef UTILS_USTR_H #define UTILS_USTR_H #include #include struct UStr { size_t len; char cstr[]; }; const struct UStr *UStrAdd_(const char *s, bool *added); const struct UStr *UStrAdd(const char *s); void UStrPrintPool(void); #endif // UTILS_USTR_H