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

This commit is contained in:
2023-11-03 18:04:46 +09:00
parent 7ccc1ce136
commit 428f67f25c
6 changed files with 271 additions and 23 deletions

View File

@ -2310,6 +2310,18 @@ HCL_EXPORT int hcl_feed (
hcl_oow_t len
);
HCL_EXPORT int hcl_feeduchars (
hcl_t* hcl,
const hcl_uch_t* data,
hcl_oow_t len
);
HCL_EXPORT int hcl_feedbchars (
hcl_t* hcl,
const hcl_bch_t* data,
hcl_oow_t len
);
HCL_EXPORT int hcl_endfeed (
hcl_t* hcl
);