mighty

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

str.c (140B)



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

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