aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2024-08-02 18:08:01 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2024-08-02 18:08:01 +0200
commit9642e3625d97de5aca850943ed33fffb3b61f180 (patch)
treefaf582bdb3ae3bc5095a34caec7d51d9fa97ed52
parent81d3ee66b56192909fe607558f1c1e6c899e4af6 (diff)
downloadproperties-9642e3625d97de5aca850943ed33fffb3b61f180.tar.gz
properties-9642e3625d97de5aca850943ed33fffb3b61f180.zip
Add properties.h
-rw-r--r--properties.h6
-rw-r--r--test/main.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/properties.h b/properties.h
new file mode 100644
index 0000000..f747933
--- /dev/null
+++ b/properties.h
@@ -0,0 +1,6 @@
+#ifndef __PROPERTIES_H__
+#define __PROPERTIES_H__
+
+void properties_load(FILE *);
+
+#endif /* __PROPERTIES_H__ */ \ No newline at end of file
diff --git a/test/main.c b/test/main.c
index 479c5fa..4204893 100644
--- a/test/main.c
+++ b/test/main.c
@@ -2,7 +2,7 @@
#include <stdlib.h>
#include <string.h>
-void properties_load(FILE *file);
+#include "../properties.h"
int
main(int argc, char **argv)