sic

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

str.h (154B)



#pragma once

#include <stddef.h>

typedef struct Str {
    char* value;
    size_t len;
    size_t cap;
} Str;

void str_append(Str* str, const char c);