diff options
author | M.Gergő | 2020-05-17 07:12:14 +0200 |
---|---|---|
committer | M.Gergő | 2020-05-17 07:12:14 +0200 |
commit | 2ad766df8f2bd45b7c0feff2fe19fc5f67b80842 (patch) | |
tree | 0ea3fd180a5cf260d1a780168f03d95b37fe472d /src/main.h | |
parent | cd28b1ec07c8ad615078a1ec55f4f9dfc6b92504 (diff) | |
download | lightconfini-2ad766df8f2bd45b7c0feff2fe19fc5f67b80842.tar.gz lightconfini-2ad766df8f2bd45b7c0feff2fe19fc5f67b80842.zip |
New Read function (Own)
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h new file mode 100644 index 0000000..6246787 --- /dev/null +++ b/src/main.h @@ -0,0 +1,9 @@ +#ifndef MAIN_H_INCLUDED +#define MAIN_H_INCLUDED +#include <stdint.h> /* int64_t*/ + + +void myfunct(int line, int linelen, char *section, int sectionlen, char *param, int paramlen, char *value, int valuelen, char *comment, int commentlen, char *error, int errorlen ); + +#endif /* MAIN_H_INCLUDED */ + |