#ifndef STR_H_ #define STR_H_ #define STRINGIFY(x) STRINGIFY2(x) #define STRINGIFY2(x) #x char *string_duplicate(const char *str, const char *str_end); #endif // STR_H_