Merge pull request #110 from birth-software/more-c-improvements

Some C improvements
This commit is contained in:
David 2024-03-09 12:11:46 -06:00 committed by GitHub
commit 48f9902f2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 1950 additions and 1902 deletions

File diff suppressed because it is too large Load Diff

1
test/cc/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build

View File

@ -0,0 +1,3 @@
cmake_minimum_required(VERSION 3.15)
project(c_first C)
add_executable(c_first main.c)

4
test/cc/c_first/main.c Normal file
View File

@ -0,0 +1,4 @@
int main()
{
return 0;
}