| 1201 | } |
| 1202 | |
| 1203 | void das_array_lock ( das_context * context, das_array * arr ) { |
| 1204 | array_lock(*(Context *)context, *(Array *)arr, nullptr); |
| 1205 | } |
| 1206 | |
| 1207 | void das_array_unlock ( das_context * context, das_array * arr ) { |
| 1208 | array_unlock(*(Context *)context, *(Array *)arr, nullptr); |
no test coverage detected