renamed hcl_read2() and hcl_compile2() to hcl_read() and hcl_compile() respectively

This commit is contained in:
2021-01-29 08:40:10 +00:00
parent d4fbd0a298
commit d19fab7e3f
7 changed files with 32 additions and 33 deletions

View File

@ -1992,7 +1992,7 @@ HCL_EXPORT void hcl_flushio (
hcl_t* hcl
);
HCL_EXPORT hcl_cnode_t* hcl_read2 (
HCL_EXPORT hcl_cnode_t* hcl_read (
hcl_t* hcl
);
@ -2016,7 +2016,7 @@ HCL_EXPORT hcl_ooi_t hcl_proutufmt (
...
);
HCL_EXPORT int hcl_compile2 (
HCL_EXPORT int hcl_compile (
hcl_t* hcl,
hcl_cnode_t* obj
);