This C library provides easier manipulation of dynamic C-strings.
MIT Read the license
gcc (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0
Read the Wiki to see all details
#include <stdio.h>
#include <dstring.h>
int main (void){
String *string=string_new_with_text("Hello World");
printf("%s\n",string_get_text(string));
string_free(string);
return 0;
}