I U T I L S _ p u t _ e r r m s g Retrives a message and prints it as an error.
| 185 | // I U T I L S _ p u t _ e r r m s g |
| 186 | // Retrives a message and prints it as an error. |
| 187 | void IUTILS_put_errmsg(USHORT number, const SafeArg& args) |
| 188 | { |
| 189 | TEXT errbuf[MSG_LENGTH]; |
| 190 | IUTILS_msg_get(number, errbuf, args); |
| 191 | STDERROUT(errbuf); |
| 192 | } |
| 193 | |
| 194 | |
| 195 | void IUTILS_remove_and_unescape_quotes(TEXT* string, const char quote) |
nothing calls this directly
no test coverage detected