working chat app example with some rough edges

This commit is contained in:
2025-11-30 20:01:06 +01:00
parent f311b242c2
commit 875cd9d044
5 changed files with 346 additions and 105 deletions

2
core.c
View File

@@ -211,7 +211,7 @@ StringList strSplit(Arena *arena, string splitStr, string inputStr) {
splitString->str = inputStr.str + start;
splitString->length = c - start;
splitCount++;
start = c + 1;
start = c + splitStr.length;
}
c++;
}