Hash :
ec39aa6c
Author :
Thomas de Grivel
Date :
2023-11-27T00:29:26
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
/* 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 sym.h
* @brief Symbol data structure.
*
* Structure to manipulate symbols.
* Symbols are strings that are deduplicated.
* They are allocated once and only free'd at the end of the program.
* Comparing symbols is fast : it's a pointer comparison.
*/
#ifndef LIBC3_SYM_H
#define LIBC3_SYM_H
#include "types.h"
#define SYM_MAX 1024
const s_sym * sym_1 (const s8 *p);
const s_sym ** sym_init_1 (const s_sym **sym, const s8 *p);
const s_sym ** sym_init_copy (const s_sym **sym,
const s_sym * const *src);
/* Heap-allocation functions, call sym_delete_all at exit. */
void sym_delete_all (void);
const s_sym * sym_new (const s_str *src);
/* Observers */
bool sym_character_is_reserved (character c);
const s_sym * sym_find (const s_str *src);
bool sym_has_reserved_characters (const s_sym *sym);
s_str * sym_inspect (const s_sym *sym, s_str *dest);
bool sym_is_module (const s_sym *sym);
f_buf_inspect sym_to_buf_inspect (const s_sym *type);
f_buf_inspect_size sym_to_buf_inspect_size (const s_sym *type);
ffi_type * sym_to_ffi_type (const s_sym *sym,
ffi_type *result_type);
f_init_copy sym_to_init_copy (const s_sym *type);
bool sym_to_tag_type (const s_sym *sym, e_tag_type *dest);
uw sym_type_size (const s_sym *type);
#endif /* LIBC3_SYM_H */