diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2021-06-14 20:57:58 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2021-06-14 20:57:58 +0200 |
commit | 64f446220da6f567c818d00a650f92d25391d6e5 (patch) | |
tree | 59ebf4f29851e31a192a6287b87690b99c94a417 /src/zonefile.h | |
parent | 4d56d7b74f75a918aaa6fa6ab051a3ef9896ffc6 (diff) | |
download | dns-64f446220da6f567c818d00a650f92d25391d6e5.tar.gz |
fix warnings
Diffstat (limited to 'src/zonefile.h')
-rw-r--r-- | src/zonefile.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/zonefile.h b/src/zonefile.h new file mode 100644 index 0000000..8c2dac3 --- /dev/null +++ b/src/zonefile.h @@ -0,0 +1,11 @@ +/* + * src/zonefile.h + * (c) 2021 Jonas Gunz <himself@jonasgunz.de> + * License: MIT + */ + +#pragma once + +#include <stdio.h> + +int zonefile_parse_to_list (void** _list, char* _file); |