tesohh-bricks 1.0.4

build system and package manager for C/C++
Documentation
1
2
3
4
5
6
7
8
#include "strings.h"
#include <stdio.h>

void String_print(String str) {
    for (int i = 0; i < str.len; i++) {
        printf("%c", str.buf[i]);
    }
}