Added multithreaded server02 for handling query and insert requests, utility functions for byte operations in data.c, updated tests, and extended project configuration.

This commit is contained in:
2025-07-28 23:16:05 +01:00
parent 84339df5fa
commit bd3d3d6da7
8 changed files with 288 additions and 13 deletions

2
data.h
View File

@@ -14,5 +14,7 @@ void char_array_print(const char_array_t *array);
void char_array_wipe(char_array_t *array);
bool char_array_has_char(char_array_t *array, char c);
char *char_array_get_until_char(char_array_t *array, char c);
char *char_array_get_bytes(char_array_t *array, size_t length);
void char_array_shift_bytes(char_array_t *array, size_t length);
SOCKET get_listen_socket();