first version of init done

This commit is contained in:
Guilleag01
2025-07-26 21:23:44 +02:00
parent 1a2bd851fe
commit 6df525f978
15 changed files with 67 additions and 49 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,6 +1,6 @@
[general]
target = "main"
main = "main.c"
target = "test"
main = "src/main.c"
[build]
build_dir = "build"

View File

@@ -1,8 +0,0 @@
#include "test1.h"
#include "test2.h"
#include <stdio.h>
void test1() {
printf("Hola desde test1\n");
test2();
}

View File

@@ -1,6 +0,0 @@
#ifndef TEST1_HEADER
#define TEST1_HEADER
void test1();
#endif

View File

@@ -1,6 +0,0 @@
#include "test2.h"
#include <stdio.h>
void test2() {
printf("Hola desde test2\n");
}

View File

@@ -1,6 +0,0 @@
#ifndef TEST2_HEADER
#define TEST2_HEADER
void test2();
#endif

BIN
test/main

Binary file not shown.

View File

@@ -1,8 +0,0 @@
#include <stdio.h>
#include "test1.h"
int main() {
printf("Hola desde main\n");
test1();
}