This commit is contained in:
agra
2026-02-22 17:24:04 +02:00
parent 775dcb44cc
commit d3e574eae5
38 changed files with 16135 additions and 33 deletions

7988
vendors/stb_image/stb_image.h vendored Normal file

File diff suppressed because it is too large Load Diff

2
vendors/stb_image/stb_image_impl.c vendored Normal file
View File

@@ -0,0 +1,2 @@
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"

1724
vendors/stb_image/stb_image_write.h vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,2 @@
#define STB_IMAGE_WRITE_IMPLEMENTATION
#include "stb_image_write.h"

5079
vendors/stb_truetype/stb_truetype.h vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,2 @@
#define STB_TRUETYPE_IMPLEMENTATION
#include "stb_truetype.h"

9
vendors/test_c/test.c vendored Normal file
View File

@@ -0,0 +1,9 @@
#include "test.h"
int add_numbers(int a, int b) {
return a + b;
}
int multiply(int a, int b) {
return a * b;
}

2
vendors/test_c/test.h vendored Normal file
View File

@@ -0,0 +1,2 @@
int add_numbers(int a, int b);
int multiply(int a, int b);