aboutsummaryrefslogtreecommitdiff
path: root/ll.h
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2023-12-06 17:16:54 -0500
committerHolden Rohrer <hr@hrhr.dev>2023-12-06 17:19:17 -0500
commit0b4bd76e6bcb46074719f950f2b8e2cd464d117d (patch)
treeb16733a2bbf99a89a3f24e24a657ec33161e0263 /ll.h
parent47ff6a368e1925cdc6d9fa197252c62855ec2bab (diff)
old changes I had lying aroundHEADmaster
Looks like I was trying to implement an splint linter here in order to disprove null check errors. This whole thing seems pretty useless except as a C exercise. Why not just use a Wiki or Knuth's WEB or org-mode or a text file with indentation?
Diffstat (limited to 'll.h')
-rw-r--r--ll.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ll.h b/ll.h
index 9a80182..cea6010 100644
--- a/ll.h
+++ b/ll.h
@@ -7,6 +7,6 @@ typedef struct llnode {
struct llnode* next;
} llnode;
-llnode* appendll(llnode* tail, char* str);
+llnode* appendll(llnode* tail, /*@notnull@*/char* str);
#endif