#include "utils.h" #include #include char* alloc_cstring(const char* source) { char* destination = malloc(strlen(source) + 1); strcpy(destination, source); return destination; } AllocatedString alloc_string(const char* source, size_t length) { char* value = malloc(length + 1); strncpy(value, source, length); return (AllocatedString) { .value = value, .length = length, }; }