| 1754 | #ifndef STANDALONE |
| 1755 | |
| 1756 | void listoptions(char *s) |
| 1757 | { |
| 1758 | extern const char *menufilesortorders[], *texturestacktypes[], *soundprioritynames[], *soundcategories[]; |
| 1759 | const char *optionnames[] = { "entities", "ents", "weapons", "teamnames", "teamnames-abbrv", "punctuations", "crosshairnames", "menufilesortorders", "texturestacktypes", "cubetypes", "soundpriorities", "soundcategories", "" }; |
| 1760 | const char **optionlists[] = { optionnames, entnames + 1, entnames + 1, gunnames, teamnames, teamnames_s, punctnames, crosshairnames, menufilesortorders, texturestacktypes, cubetypenames, soundprioritynames, soundcategories }; |
| 1761 | const char **listp = optionlists[getlistindex(s, optionnames, true, -1) + 1]; |
| 1762 | commandret = conc(listp, -1, true); |
| 1763 | } |
| 1764 | COMMAND(listoptions, "s"); |
| 1765 | |
| 1766 | #endif |
nothing calls this directly
no test coverage detected