| 227 | va_end(args); |
| 228 | } |
| 229 | void warn(CSOUND *csound, const char *format,...) |
| 230 | { |
| 231 | if(csound) { |
| 232 | if(csound->GetMessageLevel(csound) & CS_WARNMSG) { |
| 233 | va_list args; |
| 234 | va_start(args, format); |
| 235 | csound->MessageV(csound, CSOUNDMSG_WARNING, format, args); |
| 236 | va_end(args); |
| 237 | } |
| 238 | } else { |
| 239 | va_list args; |
| 240 | va_start(args, format); |
| 241 | vfprintf(stdout, format, args); |
| 242 | va_end(args); |
| 243 | } |
| 244 | } |
| 245 | OPDS opds; |
| 246 | }; |
| 247 |
no outgoing calls
no test coverage detected