aboutsummaryrefslogtreecommitdiff
path: root/list.c
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-12-29 12:17:32 +0800
committerMistivia <i@mistivia.com>2025-12-29 12:17:32 +0800
commit142f864091727fd1d7d7c77628e682398201d682 (patch)
tree1a2cafa71c67d7b04cbabadfcfcea2f3c606b31f /list.c
parent0074174afc3105701212c6f0922d64d8b266782a (diff)
list type alias
Diffstat (limited to 'list.c')
-rw-r--r--list.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/list.c b/list.c
index 2d08bd5..f85d054 100644
--- a/list.c
+++ b/list.c
@@ -1,3 +1,12 @@
#include "list.h"
LIST_IMPL(Int);
+LIST_IMPL(Bool);
+LIST_IMPL(Long);
+LIST_IMPL(Char);
+LIST_IMPL(UInt);
+LIST_IMPL(ULong);
+LIST_IMPL(Double);
+LIST_IMPL(Float);
+LIST_IMPL(String);
+LIST_IMPL(VoidPtr);