Type representing a sort option. More...
Go to the source code of this file.
Macros | |
#define | mutt_numeric_cmp(a, b) ((a) < (b) ? -1 : ((a) > (b) ? 1 : 0)) |
#define | SORT_MASK ((1 << 8) - 1) |
Mask for the sort id. | |
#define | SORT_REVERSE (1 << 8) |
Reverse the order of the sort. | |
#define | SORT_LAST (1 << 9) |
Sort thread by last-X, e.g. received date. | |
Type representing a sort option.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file sort.h.
#define mutt_numeric_cmp | ( | a, | |
b | |||
) | ((a) < (b) ? -1 : ((a) > (b) ? 1 : 0)) |