added core.class_name module function
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-07-16 00:15:28 +09:00
parent 81070919d7
commit 91e1e8c9c3
8 changed files with 182 additions and 16 deletions

View File

@ -737,6 +737,7 @@ void hcl_freemem (hcl_t* hcl, void* ptr)
#if defined(HCL_ENABLE_STATIC_MODULE)
#include "../mod/_arr.h"
#include "../mod/_core.h"
#include "../mod/_dic.h"
#include "../mod/_str.h"
#include "../mod/_sys.h"
@ -749,6 +750,7 @@ static struct
static_modtab[] =
{
{ "arr", hcl_mod_arr },
{ "core", hcl_mod_core },
{ "dic", hcl_mod_dic },
{ "str", hcl_mod_str },
{ "sys", hcl_mod_sys }