Add embedded dictionary

This commit is contained in:
Nishi 2026-06-21 17:52:12 +09:00
commit 2ac92827bc
8 changed files with 103204 additions and 58845 deletions

View file

@ -113,6 +113,11 @@ typedef struct global {
TypeDicSeg Jpeepidx;
} Global;
typedef struct vfile {
u_char* buffer;
u_int size;
} VFile;
typedef struct dictfile {
DICT dict;
int refcnt;
@ -120,6 +125,7 @@ typedef struct dictfile {
fd_set lock;
#endif
FILE* fp;
VFile vf;
int fd;
u_char* buffer;