compiles but doesnt work

This commit is contained in:
2022-08-26 02:05:09 +06:00
parent b627affbde
commit 3323c40fa3
9 changed files with 80 additions and 2 deletions

View File

@@ -1,6 +1,11 @@
#include "StringBuilder.h"
Autoarr_define(string)
kerepTypeId_define(kerepTypeId_AutoarrString);
kerepTypeId_define(kerepTypeId_AutoarrStringPtr);
kerepTypeId_define(kerepTypeId_StringBuilder);
kerepTypeId_define(kerepTypeId_StringBuilderPtr);
#define BL_C 32
#define BL_L 1024

View File

@@ -8,6 +8,8 @@ extern "C" {
#include "string.h"
Autoarr_declare(string)
kerepTypeId_declare(kerepTypeId_AutoarrString);
kerepTypeId_declare(kerepTypeId_AutoarrStringPtr);
typedef struct StringBuilder{
Autoarr(string)* compl_bufs;