epic rust mention in function docs !!!!

This commit is contained in:
jacekpoz 2024-03-11 17:23:21 +01:00
parent 4caa80580b
commit 2e62adfa57
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8
2 changed files with 4 additions and 0 deletions

View file

@ -23,6 +23,8 @@ typedef struct {
LinkedList linked_list_new(size_t element_size);
// value is copied into a local queue-owned variable
// in rust terms - value is only borrowed
void linked_list_insert(LinkedList *l, void *value);
LinkedList linked_list_merge(LinkedList l1, LinkedList l2);

View file

@ -24,6 +24,8 @@ typedef struct {
DoublyLinkedList doubly_linked_list_new(size_t element_size);
// value is copied into a local queue-owned variable
// in rust terms - value is only borrowed
void doubly_linked_list_insert(DoublyLinkedList *l, void *value);
DoublyLinkedList doubly_linked_list_merge(DoublyLinkedList l1, DoublyLinkedList l2);