the new compiler is becoming usable. but not complete yet.
added more string copy functions
This commit is contained in:
16
lib/hcl.h
16
lib/hcl.h
@ -1365,7 +1365,11 @@ struct hcl_synerr_t
|
||||
{
|
||||
hcl_synerrnum_t num;
|
||||
hcl_ioloc_t loc;
|
||||
hcl_oocs_t tgt;
|
||||
struct
|
||||
{
|
||||
hcl_ooch_t val[256];
|
||||
hcl_oow_t len;
|
||||
} tgt;
|
||||
};
|
||||
|
||||
#if defined(HCL_INCLUDE_COMPILER)
|
||||
@ -2419,6 +2423,16 @@ HCL_EXPORT hcl_oop_cons_t hcl_getatsysdic (
|
||||
hcl_oop_t key
|
||||
);
|
||||
|
||||
hcl_oop_cons_t hcl_lookupsysdicforsymbol (
|
||||
hcl_t* hcl,
|
||||
const hcl_oocs_t* name
|
||||
);
|
||||
|
||||
hcl_oop_cons_t hcl_lookupsysdicforsymbol_noseterr (
|
||||
hcl_t* hcl,
|
||||
const hcl_oocs_t* name
|
||||
);
|
||||
|
||||
HCL_EXPORT int hcl_zapatsysdic (
|
||||
hcl_t* hcl,
|
||||
hcl_oop_t key
|
||||
|
Reference in New Issue
Block a user