added hcl_instantiatewithtrailer()
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-05-15 22:59:34 +09:00
parent 47e0604b03
commit c795b28cb8
21 changed files with 236 additions and 216 deletions

View File

@ -187,6 +187,21 @@ struct hcl_fmtout_t
const void* fmt_str;
};
/* =========================================================================
* FORMATTED INPUT
* ========================================================================= */
typedef struct hcl_fmtin_t hcl_fmtin_t;
struct hcl_fmtin_t
{
#if 0
hcl_fmtin_getbchars_t getbchars; /* in */
hcl_fmtin_getuchars_t getuchars; /* in */
#endif
void* ctx; /* in */
};
#if defined(__cplusplus)
extern "C" {
#endif