From 3b543388b988702c984d80a35e97ea134d9ed481 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Tue, 21 Apr 2026 19:48:36 +0300 Subject: feat!: Function rename and standardize --- example.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 example.c (limited to 'example.c') diff --git a/example.c b/example.c new file mode 100644 index 0000000..bddf398 --- /dev/null +++ b/example.c @@ -0,0 +1,29 @@ +#include "Array.h" +#include "BumpAlloc.h" +#include "GlobalArena.h" +#include "String.h" +#include + +int +main() { + g_arena = B_create(KiB(4)); + + int *nums = AG_new(sizeof(int), 8); + for (int i = 10; i < 20; ++i) { + A_push(nums, &i); + } + + printf("%lu/%lu |", A_count(nums), A_length(nums)); + for (int i = 0; i < A_count(nums); ++i) + printf(" %d", nums[i]); + printf("\n"); + + String s = SG_concat("Hello", " ", "World", "!", NULL); + printf("%s\n", s); + + String s1 = SG_printf("%s #%d\n", s, 5); + printf("%s\n", s1); + + B_destroy(g_arena); + return 0; +} -- cgit v1.2.3