import c
This commit is contained in:
7988
vendors/stb_image/stb_image.h
vendored
Normal file
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
2
vendors/stb_image/stb_image_impl.c
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
#define STB_IMAGE_IMPLEMENTATION
|
||||
#include "stb_image.h"
|
||||
1724
vendors/stb_image/stb_image_write.h
vendored
Normal file
1724
vendors/stb_image/stb_image_write.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2
vendors/stb_image/stb_image_write_impl.c
vendored
Normal file
2
vendors/stb_image/stb_image_write_impl.c
vendored
Normal 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
5079
vendors/stb_truetype/stb_truetype.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2
vendors/stb_truetype/stb_truetype_impl.c
vendored
Normal file
2
vendors/stb_truetype/stb_truetype_impl.c
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
#define STB_TRUETYPE_IMPLEMENTATION
|
||||
#include "stb_truetype.h"
|
||||
9
vendors/test_c/test.c
vendored
Normal file
9
vendors/test_c/test.c
vendored
Normal 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
2
vendors/test_c/test.h
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
int add_numbers(int a, int b);
|
||||
int multiply(int a, int b);
|
||||
Reference in New Issue
Block a user