Some C improvements

This commit is contained in:
David Gonzalez Martin 2024-03-09 12:10:40 -06:00
parent 4baca74f5e
commit 37cb207d60
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;
}