removed the str module
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-08-08 16:30:15 +09:00
parent 5ddc29dc5b
commit b806865c21
10 changed files with 25 additions and 303 deletions

View File

@ -110,10 +110,10 @@ static hcl_pfrc_t pf_dic_walk (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
static hcl_pfinfo_t pfinfos[] =
{
{ { 'g','e','t','\0' }, { HCL_PFBASE_FUNC, pf_dic_get, 2, 2 } },
/* { { 'm','a','k','e','\0' }, { HCL_PFBASE_FUNC, pf_dic_make, 1, 1 } }, */
{ { 'p','u','t','\0' }, { HCL_PFBASE_FUNC, pf_dic_put, 3, 3 } },
{ { 'w','a','l','k','\0' }, { HCL_PFBASE_FUNC, pf_dic_walk, 2, 2 } },
{ "get", { HCL_PFBASE_FUNC, pf_dic_get, 2, 2 } },
/* { "make", { HCL_PFBASE_FUNC, pf_dic_make, 1, 1 } }, */
{ "put", { HCL_PFBASE_FUNC, pf_dic_put, 3, 3 } },
{ "walk", { HCL_PFBASE_FUNC, pf_dic_walk, 2, 2 } },
};
/* ------------------------------------------------------------------------ */