| 531 | args->text = row->software; |
| 532 | } |
| 533 | static int SoftwareColumn_Sort(const struct ServerInfo* a, const struct ServerInfo* b) { |
| 534 | return String_Compare(&b->software, &a->software); |
| 535 | } |
| 536 | |
| 537 | static struct LTableColumn tableColumns[] = { |
| 538 | { "", 15, FlagColumn_Draw, NULL, false, false, false }, |
nothing calls this directly
no test coverage detected