| 444 | // |
| 445 | |
| 446 | SCHAR* MSC_string(const TEXT* input) |
| 447 | { |
| 448 | TEXT* string = (TEXT*) MSC_alloc(static_cast<int>(strlen(input) + 1)); |
| 449 | strcpy(string, input); |
| 450 | |
| 451 | return string; |
| 452 | } |
| 453 | |
| 454 | |
| 455 | //____________________________________________________________ |
no test coverage detected