This is an header only C library for handling Strings, to add to your project you just need to Include String.h
#define STRING_IMPLEMENTATION
#include "String.h"
#include <stdio.h>
int main(int argc, char** argv){
String str = String_new_from_cstr("Hello, World");
printf("%s!", STRARG(str));
....
return 0;
}To run tests you just need a C compiler to compile the nob.c file
gcc -o tester bil.cThis file uses the nob.h technology to let C act like scripts. After compiled you can run it to test all the tests/*.c files
./tester testsor you can run a specific test
./tester run app