summaryrefslogtreecommitdiff
path: root/public.asm
diff options
context:
space:
mode:
Diffstat (limited to 'public.asm')
-rw-r--r--public.asm4
1 files changed, 4 insertions, 0 deletions
diff --git a/public.asm b/public.asm
index 0a90fe8..f4c216f 100644
--- a/public.asm
+++ b/public.asm
@@ -40,6 +40,10 @@ global list_clear:function
;; otherwise (on success), $rax will be set to 0
global list_append:function
+;; like list_append but instead of adding at the end of the list, this
+;; function adds at the position $rdx
+global list_insert:function
+
;; for every element in the list stored at address $rdi, call the function
;; pointed to by $rsi with the value of the current element.
global list_apply:function