tesohh-bricks 1.0.4

build system and package manager for C/C++
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef STRINGS_H
#define STRINGS_H

#include <stdint.h>
typedef struct String {
    char* buf;
    int64_t len;
} String;

String String_new(char*);
void String_print(String);

#endif