mighty

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

str.h (144B)



#pragma once

#include <stddef.h>

struct str {
    char *value;
    size_t len;
    size_t cap;
};

void str_append(struct str *, const char);