eb_cat_e.c

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

C
18
字号
/*# proc: eb_cat_e - Puts "ERROR " in front of provided string, formats the result,# proc:            catenates that onto the hidden error-messages buffer, and sets# proc:            the hidden error-exists flag.*/voideb_cat_e(str)char str[];{  char errstr[500], errstr2[500];  sprintf(errstr2, "ERROR: %s", str);  strm_fmt(errstr2, errstr);  eb_cat(errstr);  is_e_set();}

⌨️ 快捷键说明

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