some minor code touch-up

This commit is contained in:
2022-07-31 13:17:44 +00:00
parent b4eb3d9768
commit 1bf908e6ba
6 changed files with 40 additions and 17 deletions

View File

@ -4056,7 +4056,13 @@ void hcl_detachio (hcl_t* hcl)
}
}
hcl_ioinarg_t* hcl_getbaseioarg (hcl_t* hcl)
hcl_ioinarg_t* hcl_getbaseinarg (hcl_t* hcl)
{
return &hcl->c->inarg;
}
void hcl_setbaseinloc (hcl_t* hcl, hcl_oow_t line, hcl_oow_t colm)
{
hcl->c->inarg.line = line;
hcl->c->inarg.colm = colm;
}