| 375 | } |
| 376 | |
| 377 | void csoundTableCopyIn(CSOUND *csound, int table, MYFLT *ptable){ |
| 378 | csoundLockMutex(csound->API_lock); |
| 379 | csoundTableCopyInInternal(csound, table, ptable); |
| 380 | csoundUnlockMutex(csound->API_lock); |
| 381 | } |
| 382 | |
| 383 | void csoundTableSet(CSOUND *csound, int table, int index, MYFLT value) |
| 384 | { |
no test coverage detected