From 1629c3621e02a8e176172f44a72d155030172d35 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Mon, 2 Dec 2019 14:07:34 +0100 Subject: Prepare for license --- src/dns.c | 5 +++++ src/dns.h | 5 +++++ src/log.c | 5 +++++ src/log.h | 5 +++++ src/main.c | 5 +++++ 5 files changed, 25 insertions(+) (limited to 'src') diff --git a/src/dns.c b/src/dns.c index eaa032e..6cdae43 100644 --- a/src/dns.c +++ b/src/dns.c @@ -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 ) diff --git a/src/dns.h b/src/dns.h index c2d6d18..f93480e 100644 --- a/src/dns.h +++ b/src/dns.h @@ -1,3 +1,8 @@ +/* dns.h + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #pragma once #include diff --git a/src/log.c b/src/log.c index 197582c..df1ae6a 100644 --- a/src/log.c +++ b/src/log.c @@ -1,3 +1,8 @@ +/* log.c + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #include "log.h" const char* log_loglevel_str[5] = { diff --git a/src/log.h b/src/log.h index 8b2c881..81cea3d 100644 --- a/src/log.h +++ b/src/log.h @@ -1,3 +1,8 @@ +/* log.h + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #pragma once #include diff --git a/src/main.c b/src/main.c index cb0432e..1e96f33 100644 --- a/src/main.c +++ b/src/main.c @@ -1,3 +1,8 @@ +/* main.c + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #include #include #include -- cgit v1.2.3