sic

The sic programming language, compiler and tools (WIP)
Log | Files | Refs

str.c (133B)



#include "str.h"
#include "array.h"

void str_append(Str* str, const char c)
{
    STRING_PUSH(str->value, str->len, str->cap, c);
}