| 631 | write_pending = true; |
| 632 | } |
| 633 | void pilot::get_name(char *n) { |
| 634 | if (n) { |
| 635 | if (name) { |
| 636 | strcpy(n, name); |
| 637 | } else { |
| 638 | *n = '\0'; |
| 639 | } |
| 640 | } |
| 641 | } |
| 642 | |
| 643 | void pilot::set_ship(const char *ship) { |
| 644 | if (ship_model) { |
no outgoing calls
no test coverage detected