[PAKCET_IO] framework intermediate state <the second time>

This commit is contained in:
liuwentan
2022-07-28 20:30:48 +08:00
parent 7ae4ca2e2a
commit 536bf31be1
12 changed files with 168 additions and 82 deletions

View File

@@ -3,6 +3,7 @@
#include <stdlib.h> //calloc
#define CALLOC(type, number) ((type *)calloc(sizeof(type), number))
#define REALLOC(addr, number) ((void *)realloc(addr, number))
#define FREE(p) {free(p);p=NULL;}
#define TRUE 1