| 216 | return (uint32_t)opds.optext->t.inArgCount; |
| 217 | } |
| 218 | void log(CSOUND *csound, const char *format,...) |
| 219 | { |
| 220 | va_list args; |
| 221 | va_start(args, format); |
| 222 | if(csound) { |
| 223 | csound->MessageV(csound, 0, format, args); |
| 224 | } else { |
| 225 | vfprintf(stdout, format, args); |
| 226 | } |
| 227 | va_end(args); |
| 228 | } |
| 229 | void warn(CSOUND *csound, const char *format,...) |
| 230 | { |
| 231 | if(csound) { |
no outgoing calls
no test coverage detected