Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 518 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 518 Bytes

Dynamic String

This C library provides easier manipulation of dynamic C-strings.

LICENSE

MIT Read the license

COMPILER USED

gcc (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0

HOW TO USE

Read the Wiki to see all details

EXAMPLE

#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;
}