Hash :
a8ded594
Author :
Thomas de Grivel
Date :
2024-02-08T10:43:48
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
/* c3
* Copyright 2022,2023 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 block.h
* @brief A block of code (a tuple of tags).
*
* A block is a tuple of tags representing code.
*/
#ifndef LIBC3_BLOCK_H
#define LIBC3_BLOCK_H
#include "hash.h"
#include "types.h"
/* Stack allocation compatible functions */
s_block * block_init (s_block *block, uw count);
s_block * block_init_1 (s_block *block, const char *p);
s_block * block_init_cast (s_block *block, const s_tag *tag);
s_block * block_init_copy (s_block *block, const s_block *src);
void block_clean (s_block *block);
/* Constructors, call block_delete after use */
s_block * block_new (uw count);
s_block * block_new_1 (const char *p);
/* Destructor */
void block_delete (s_block *block);
/* Modifiers */
s_block * block_1 (s_block *block, const char *p);
/* Observers */
s_list * block_to_list (const s_block *block, s_list **list);
s_str * block_inspect (const s_block *x, s_str *dest);
#endif /* LIBC3_BLOCK_H */