This commit is contained in:
2025-07-28 09:03:00 +01:00
commit f86fcc977e
6 changed files with 174 additions and 0 deletions

21
main.h Normal file
View File

@@ -0,0 +1,21 @@
//
// Created by Ajurna on 27/07/2025.
//
#ifndef MAIN_H
#define MAIN_H
#endif //MAIN_H
typedef struct ReplyArray {
size_t size;
size_t capacity;
char *data;
} array_t;
array_t *array_create(int size);
void array_destroy(array_t *array);
void array_append(array_t *array, char *value, size_t length);
void array_print(const array_t *array);
void array_wipe(array_t *array);