#ifndef STRINGS_H #define STRINGS_H #include "types.h" #define MAX_STRINGS 4096 #define MAX_STRING_LEN 64 /* Initialize the global string interning system */ void strings_init(void); /* Intern a string with escape sequence processing */ const char *strings_alloc(const char *str); /* Intern a string with escape sequence processing */ const char *strings_alloc_len(const char *str, u16 len); #endif