mirror of
https://github.com/Hizenberg469/Bit-Share.git
synced 2026-04-20 00:52:24 +03:00
14 lines
248 B
C
14 lines
248 B
C
#ifndef B_STRING
|
|
#define B_STRING
|
|
|
|
#include <stddef.h>
|
|
|
|
typedef struct b_string_{
|
|
size_t len;
|
|
unsigned char str[];
|
|
}b_string_t;
|
|
|
|
b_string_t *alloc_b_string(size_t len, const char* str);
|
|
void free_b_string(b_string_t *b_str);
|
|
|
|
#endif |