Skip to content

LorhanSohaky/String

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published