From c7d0e7b846858357b4274ad976b7b41d6f0fd98a Mon Sep 17 00:00:00 2001 From: poulpe <poulpe@localhost.localdomain> Date: Mon, 15 Nov 2021 09:07:14 +0100 Subject: [PATCH] Add README + struct for library .c .h --- README.md | 6 ++++++ main.c | 9 +++++++++ optimisation.c | 1 + optimisation.h | 11 +++++++++++ 4 files changed, 27 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..3ed03a8 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# Énoncé Math + +https://malaspinas.academy/mti/tpOptimisation/index.html + +# Repo Git +[Repo Git](https://githepia.hesge.ch/dylan.peiry/tp_optimisation) \ No newline at end of file diff --git a/main.c b/main.c index e69de29..f759377 100644 --- a/main.c +++ b/main.c @@ -0,0 +1,9 @@ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <stdint.h> + +int main(int argc, char const *argv[]) +{ + return EXIT_SUCCESS; +} diff --git a/optimisation.c b/optimisation.c index e69de29..6d208c4 100644 --- a/optimisation.c +++ b/optimisation.c @@ -0,0 +1 @@ +#include "optimisation.h" diff --git a/optimisation.h b/optimisation.h index e69de29..a40dafd 100644 --- a/optimisation.h +++ b/optimisation.h @@ -0,0 +1,11 @@ +#ifndef _HEADER_OPTIMISATION +#define _HEADER_OPTIMISATION +#include <stdio.h> +#include <stdlib.h> +#include <stdint.h> +#include <string.h> +#include <math.h> + + + +#endif \ No newline at end of file -- GitLab