Qstrcmp
qstrcmp <quote1> <quote2> <return>
Compare two quotes. The return value is zero if they are identical, smaller than zero if the first quote comes first in lexicographical order, or greater than zero if it comes later.
Note that the return value is taken directly from the strcmp
function of the C standard library, and may differ between implementations (e.g. on Windows and Linux). Do not assume that it will return any specific value, only that it is smaller, greater or equal to zero.
Also note that the lexicographical order is rudimentary, for example "Player 2" is considered greater than "Player 10".