diff options
-rw-r--r-- | properties.h | 6 | ||||
-rw-r--r-- | test/main.c | 2 |
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) |