diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/dns.c | 5 | ||||
-rw-r--r-- | src/dns.h | 5 | ||||
-rw-r--r-- | src/log.c | 5 | ||||
-rw-r--r-- | src/log.h | 5 | ||||
-rw-r--r-- | src/main.c | 5 |
5 files changed, 25 insertions, 0 deletions
@@ -1,3 +1,8 @@ +/* dns.c + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #include "dns.h" int dns_parse_packet ( char* _buffer, int _bufflen, struct dns_message* _msg ) @@ -1,3 +1,8 @@ +/* dns.h + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #pragma once #include <stdint.h> @@ -1,3 +1,8 @@ +/* log.c + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #include "log.h" const char* log_loglevel_str[5] = { @@ -1,3 +1,8 @@ +/* log.h + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #pragma once #include <stdio.h> @@ -1,3 +1,8 @@ +/* main.c + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #include <stdio.h> #include <stdlib.h> #include <errno.h> |