| 189 | // |
| 190 | |
| 191 | void MSC_copy(const char* from, int length, char* to) |
| 192 | { |
| 193 | |
| 194 | if (length) |
| 195 | memcpy(to, from, length); |
| 196 | |
| 197 | to[length] = 0; |
| 198 | } |
| 199 | |
| 200 | //____________________________________________________________ |
| 201 | // |
no outgoing calls
no test coverage detected