We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eb9f9f commit cb47904Copy full SHA for cb47904
2 files changed
src/util/list.c
@@ -0,0 +1,6 @@
1
+//
2
+// Created by AIDAN on 5/27/2025.
3
4
+
5
+#include "list.h"
6
src/util/list.h
@@ -0,0 +1,16 @@
+#ifndef KITTY_LIST_H
+#define KITTY_LIST_H
7
8
+#include "stdint.h"
9
10
+struct klist {
11
+ uint64_t length;
12
+ uint64_t size;
13
+ void* pointer;
14
+};
15
16
+#endif //KITTY_LIST_H
0 commit comments