eb_cat_w.c
来自「NIST Handwriting OCR Testbed」· C语言 代码 · 共 18 行
C
18 行
/*# proc: eb_cat_w - Puts "Warning " in front of provided string, formats the# proc: result, catenates that onto the hidden error-messages buffer,# proc: and sets the hidden warning-exists flag.*/voideb_cat_w(str)char str[];{ char errstr[500], errstr2[500]; sprintf(errstr2, "Warning: %s", str); strm_fmt(errstr2, errstr); eb_cat(errstr); is_w_set();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?