Hash :
865d1524
Author :
Thomas de Grivel
Date :
2022-10-31T00:50:45
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
/* c3
* Copyright 2022 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 LIST_H
#define LIST_H
#include <stdarg.h>
#include <stdio.h>
#include "hash.h"
#include "types.h"
/* Stack allocation compatible functions, do not use */
s_list * list_init (s_list *list);
void list_clean (s_list *list);
/* Constructors, call list_delete after use */
s_list * list_1 (const s8 *p);
s_list * list_new ();
/* Destructor */
void list_delete (s_list *list);
/* Observers */
s8 list_compare (const s_list *a, const s_list *b);
s_list * list_copy (const s_list *src, s_list **dest);
t_hash_context * list_hash_update (t_hash_context *context,
const s_list *list);
sw list_length (const s_list *list);
s_list * list_next (const s_list *list);
s_tuple * list_to_tuple_reverse (s_list *list, s_tuple *tuple);
/* Call str_delete after use. */
s_str * list_inspect (const s_list *x, s_str *dest);
#endif /* STR_H */