freemis.c

来自「NIST Handwriting OCR Testbed」· C语言 代码 · 共 25 行

C
25
字号
/*# proc: freemis - deallocates the memory associated with the specified# proc:           mis structure.# proc: freemishdr - deallocates the header associated with the specified# proc:              mis structure. Only used after a call to readmishdr.*/#include <ihead.h>#include <mis.h>void freemis(mis)MIS *mis;{  free((char *)mis->head);  free((char *)mis->data);  free((char *)mis);}void freemishdr(mis)MIS *mis;{  free((char *)mis->head);  free((char *)mis);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?