(os int)
| 557 | } |
| 558 | |
| 559 | func osToString(os int) string { |
| 560 | switch os { |
| 561 | case adaptix.OS_WINDOWS: |
| 562 | return "windows" |
| 563 | case adaptix.OS_LINUX: |
| 564 | return "linux" |
| 565 | case adaptix.OS_MAC: |
| 566 | return "macos" |
| 567 | default: |
| 568 | return "unknown" |
| 569 | } |
| 570 | } |
no outgoing calls
no test coverage detected