aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/clock_domain.c6
-rw-r--r--src/main.c8
-rw-r--r--src/packet.c3
-rw-r--r--src/snoop.c3
4 files changed, 20 insertions, 0 deletions
diff --git a/src/clock_domain.c b/src/clock_domain.c
index 15f1793..65dc72a 100644
--- a/src/clock_domain.c
+++ b/src/clock_domain.c
@@ -1,6 +1,12 @@
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+/**
+ * @file clock_domain.c
+ *
+ * Clock domain implementation stuff.
+ */
+
#include <stdlib.h>
#include <threads.h>
#include <assert.h>
diff --git a/src/main.c b/src/main.c
index abb57e6..5b7a45e 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,6 +1,14 @@
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+/**
+ * @file main.c
+ *
+ * Empty main file, fill up with your simulator if you'd like.
+ * Although I really think gran should just be a library, why
+ * haven't I done this that way?
+ */
+
int main(int argc, char **argv)
{
diff --git a/src/packet.c b/src/packet.c
index c778965..9442307 100644
--- a/src/packet.c
+++ b/src/packet.c
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: copyleft-next-0.3.1 */
+/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
#include <gran/packet.h>
#include <stdlib.h>
#include <assert.h>
diff --git a/src/snoop.c b/src/snoop.c
index 36ecd24..23970a8 100644
--- a/src/snoop.c
+++ b/src/snoop.c
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: copyleft-next-0.3.1 */
+/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
+
#include <stdlib.h>
#include <gran/snoop.h>