ToolBox Library 2.1.0
An Library containing function and class to make developing in C faster
cstr.h
1#ifndef TOOLBOX_CSTR_H
2#define TOOLBOX_CSTR_H
3
4#include <stddef.h>
5
6#ifdef TOOLBOX_TYPEDEF
7typedef struct cstr cstr_st;
8#endif
9
10struct cstr {
11 size_t size;
12 char *data;
13};
14
15#endif
Definition: cstr.h:10