cpp->c and expr support configurable generation of literal_db or regex_db

This commit is contained in:
liuwentan
2023-02-15 11:53:46 +08:00
parent d5e6808e1f
commit 379efcf027
74 changed files with 1621 additions and 927 deletions

View File

@@ -44,7 +44,7 @@ struct packedRT_t
unsigned char B[4];
};
void * aligned_malloc(size_t size, size_t align)
static void * aligned_malloc(size_t size, size_t align)
{
void * malloc_ptr;
void * aligned_ptr;
@@ -73,7 +73,7 @@ void * aligned_malloc(size_t size, size_t align)
return aligned_ptr;
}
void aligned_free(void * aligned_ptr)
static void aligned_free(void * aligned_ptr)
{
if (aligned_ptr)
{