Hash :
7f2f72e4
Author :
Thomas de Grivel
Date :
2024-03-04T14:19:12
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
/* c3
* Copyright 2022-2024 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
/**
* @file list.h
* @brief Tag list
*
* Linked list of tags.
*/
#ifndef LIBC3_LIST_H
#define LIBC3_LIST_H
#include <stdarg.h>
#include <stdio.h>
#include "hash.h"
#include "list_init.h"
/* Stack-allocation functions, call list_clean after use. */
void list_clean (s_list *list);
s_list * list_init (s_list *list, s_list *next);
s_list * list_init_1 (s_list *list, const char *p, s_list *next);
s_list ** list_init_cast (s_list **list, const s_tag *tag);
s_list ** list_init_copy (s_list **list, const s_list * const *src);
s_list * list_init_copy_tag (s_list *list, const s_tag *tag,
s_list *next);
s_list * list_init_eval (s_list *list, const char *p);
/* Heap-allocation functions, call list_delete after use */
s_list * list_delete (s_list *list);
void list_delete_all (s_list *list);
void list_f_clean (s_list **list);
s_list * list_new (s_list *next);
s_list * list_new_1 (const char *p);
s_list * list_new_f64 (f64 x, s_list *next);
s_list * list_new_copy (const s_tag *tag, s_list *next);
s_list * list_new_list (s_list *list, s_list *next);
s_list * list_new_map (uw count, s_list *next);
s_list * list_new_str_1 (char *free, const char *p, s_list *next);
/* Observers */
s_list ** list_cast (const s_tag *tag, s_list **list);
bool list_is_plist (const s_list *list);
sw list_length (const s_list *list);
s_list * list_next (const s_list *list);
s_array * list_to_array (const s_list *list, const s_sym *type,
s_array *dest);
s_tuple * list_to_tuple_reverse (const s_list *list, s_tuple *dest);
s_str * list_inspect (const s_list *list, s_str *dest);
/* Operators */
s_list ** list_remove_void (s_list **list);
/*#include "list_init.h"*/
#endif /* LIBC3_LIST_H */