Hash :
48fe1f2d
Author :
Thomas de Grivel
Date :
2024-10-28T20:38:10
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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
/* kc3
* Copyright 2022,2023,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.
*/
#ifndef LIBKC3_IO_H
#define LIBKC3_IO_H
#include "types.h"
#define PROTOTYPE_ERR_INSPECT(name, type) \
sw err_inspect_ ## name (type x) \
#define PROTOTYPE_IO_INSPECT(name, type) \
sw io_inspect_ ## name (type x) \
#define PROTOTYPES_ERR_IO_INSPECT(name, type) \
PROTOTYPE_ERR_INSPECT(name, type); \
PROTOTYPE_IO_INSPECT(name, type)
/* error output */
sw err_flush (void);
sw err_inspect (const s_tag *x);
sw err_puts (const char *x);
sw err_write (const void *x, uw len);
sw err_write_1 (const char *x);
sw err_write_str (const s_str *x);
sw err_write_u8 (u8 x);
/* standard output */
sw io_flush (void);
sw io_inspect (const s_tag *x);
sw io_puts (const char *x);
sw io_write (const void *x, uw len);
sw io_write_1 (const char *x);
sw io_write_str (const s_str *x);
sw io_write_u8 (u8 x);
PROTOTYPES_ERR_IO_INSPECT(array, const s_array *);
PROTOTYPES_ERR_IO_INSPECT(block, const s_block *);
PROTOTYPES_ERR_IO_INSPECT(bool, const bool *);
PROTOTYPES_ERR_IO_INSPECT(buf, const s_buf *);
PROTOTYPES_ERR_IO_INSPECT(call, const s_call *);
PROTOTYPES_ERR_IO_INSPECT(cfn, const s_cfn *);
PROTOTYPES_ERR_IO_INSPECT(character, const character *);
PROTOTYPES_ERR_IO_INSPECT(f32, const f32 *);
PROTOTYPES_ERR_IO_INSPECT(f64, const f64 *);
PROTOTYPES_ERR_IO_INSPECT(fact, const s_fact *);
PROTOTYPES_ERR_IO_INSPECT(facts_spec, const p_facts_spec);
PROTOTYPES_ERR_IO_INSPECT(fn, const s_fn *);
PROTOTYPES_ERR_IO_INSPECT(fn_clause, const s_fn_clause *);
PROTOTYPES_ERR_IO_INSPECT(fn_pattern, const s_list *);
PROTOTYPES_ERR_IO_INSPECT(frame, const s_frame *);
PROTOTYPES_ERR_IO_INSPECT(ident, const s_ident *);
PROTOTYPES_ERR_IO_INSPECT(integer, const s_integer *);
PROTOTYPES_ERR_IO_INSPECT(list, const s_list * const *);
PROTOTYPES_ERR_IO_INSPECT(map, const s_map *);
PROTOTYPES_ERR_IO_INSPECT(pointer, const void *);
PROTOTYPES_ERR_IO_INSPECT(ptr, const u_ptr_w *);
PROTOTYPES_ERR_IO_INSPECT(s8, const s8 *);
PROTOTYPES_ERR_IO_INSPECT(s8_decimal, const s8 *);
PROTOTYPES_ERR_IO_INSPECT(s8_hexadecimal, const s8 *);
PROTOTYPES_ERR_IO_INSPECT(s16, const s16 *);
PROTOTYPES_ERR_IO_INSPECT(s16_decimal, const s16 *);
PROTOTYPES_ERR_IO_INSPECT(s16_hexadecimal, const s16 *);
PROTOTYPES_ERR_IO_INSPECT(s32, const s32 *);
PROTOTYPES_ERR_IO_INSPECT(s32_decimal, const s32 *);
PROTOTYPES_ERR_IO_INSPECT(s32_hexadecimal, const s32 *);
PROTOTYPES_ERR_IO_INSPECT(s64, const s64 *);
PROTOTYPES_ERR_IO_INSPECT(s64_decimal, const s64 *);
PROTOTYPES_ERR_IO_INSPECT(s64_hexadecimal, const s64 *);
PROTOTYPES_ERR_IO_INSPECT(str, const s_str *);
PROTOTYPES_ERR_IO_INSPECT(struct, const s_struct *);
PROTOTYPES_ERR_IO_INSPECT(sw, const sw *);
PROTOTYPES_ERR_IO_INSPECT(sw_decimal, const sw *);
PROTOTYPES_ERR_IO_INSPECT(sw_hexadecimal, const sw *);
PROTOTYPES_ERR_IO_INSPECT(sym, const s_sym * const *);
PROTOTYPES_ERR_IO_INSPECT(tag, const s_tag *);
PROTOTYPES_ERR_IO_INSPECT(tag_type, e_tag_type);
PROTOTYPES_ERR_IO_INSPECT(tuple, const s_tuple *);
PROTOTYPES_ERR_IO_INSPECT(u8, const u8 *);
PROTOTYPES_ERR_IO_INSPECT(u8_decimal, const u8 *);
PROTOTYPES_ERR_IO_INSPECT(u8_hexadecimal, const u8 *);
PROTOTYPES_ERR_IO_INSPECT(u16, const u16 *);
PROTOTYPES_ERR_IO_INSPECT(u16_decimal, const u16 *);
PROTOTYPES_ERR_IO_INSPECT(u16_hexadecimal, const u16 *);
PROTOTYPES_ERR_IO_INSPECT(u32, const u32 *);
PROTOTYPES_ERR_IO_INSPECT(u32_decimal, const u32 *);
PROTOTYPES_ERR_IO_INSPECT(u32_hexadecimal, const u32 *);
PROTOTYPES_ERR_IO_INSPECT(u64, const u64 *);
PROTOTYPES_ERR_IO_INSPECT(u64_decimal, const u64 *);
PROTOTYPES_ERR_IO_INSPECT(u64_hexadecimal, const u64 *);
PROTOTYPES_ERR_IO_INSPECT(uw, const uw *);
PROTOTYPES_ERR_IO_INSPECT(uw_decimal, const uw *);
PROTOTYPES_ERR_IO_INSPECT(uw_hexadecimal, const uw *);
#endif /* LIBKC3_IO_H */