first version of init done
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,6 @@
|
||||
[general]
|
||||
target = "main"
|
||||
main = "main.c"
|
||||
target = "test"
|
||||
main = "src/main.c"
|
||||
|
||||
[build]
|
||||
build_dir = "build"
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
#include "test1.h"
|
||||
#include "test2.h"
|
||||
#include <stdio.h>
|
||||
|
||||
void test1() {
|
||||
printf("Hola desde test1\n");
|
||||
test2();
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
#ifndef TEST1_HEADER
|
||||
#define TEST1_HEADER
|
||||
|
||||
void test1();
|
||||
|
||||
#endif
|
||||
@@ -1,6 +0,0 @@
|
||||
#include "test2.h"
|
||||
#include <stdio.h>
|
||||
|
||||
void test2() {
|
||||
printf("Hola desde test2\n");
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
#ifndef TEST2_HEADER
|
||||
#define TEST2_HEADER
|
||||
|
||||
void test2();
|
||||
|
||||
#endif
|
||||
@@ -1,8 +0,0 @@
|
||||
#include <stdio.h>
|
||||
|
||||
#include "test1.h"
|
||||
|
||||
int main() {
|
||||
printf("Hola desde main\n");
|
||||
test1();
|
||||
}
|
||||
Reference in New Issue
Block a user