diff options
author | Christian C <cc@localhost> | 2025-03-02 18:20:34 -0800 |
---|---|---|
committer | Christian C <cc@localhost> | 2025-03-02 18:20:34 -0800 |
commit | 95af2110c0f139cdfea49fa82358508f031f2ad8 (patch) | |
tree | 8d6eea6cb7ee970ec0191b1092af32162be4db14 /src |
Initial commit
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/lib.c | 3 | ||||
-rw-r--r-- | src/main.c | 7 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/lib.c b/src/lib/lib.c new file mode 100644 index 0000000..ea971fd --- /dev/null +++ b/src/lib/lib.c @@ -0,0 +1,3 @@ +#include <stdint.h> + +const uint32_t SIZE = 5; diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..136db02 --- /dev/null +++ b/src/main.c @@ -0,0 +1,7 @@ +#include <stdio.h> +#include <stdlib.h> + +int main() +{ + return 0; +} |