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