Browser sorting. More...
#include "config.h"
#include "mutt/lib.h"
#include "config/lib.h"
#include "core/lib.h"
#include "lib.h"
#include "muttlib.h"
#include "options.h"
Go to the source code of this file.
Functions | |
static int | browser_compare_subject (const void *a, const void *b) |
Compare the subject of two browser entries - Implements sort_t -. More... | |
static int | browser_compare_order (const void *a, const void *b) |
Compare the order of creation of two browser entries - Implements sort_t -. More... | |
static int | browser_compare_desc (const void *a, const void *b) |
Compare the descriptions of two browser entries - Implements sort_t -. More... | |
static int | browser_compare_date (const void *a, const void *b) |
Compare the date of two browser entries - Implements sort_t -. More... | |
static int | browser_compare_size (const void *a, const void *b) |
Compare the size of two browser entries - Implements sort_t -. More... | |
static int | browser_compare_count (const void *a, const void *b) |
Compare the message count of two browser entries - Implements sort_t -. More... | |
static int | browser_compare_count_new (const void *a, const void *b) |
Compare the new count of two browser entries - Implements sort_t -. More... | |
static int | browser_compare (const void *a, const void *b) |
Sort the items in the browser - Implements sort_t -. More... | |
void | browser_sort (struct BrowserState *state) |
Sort the entries in the browser. More... | |
Browser sorting.
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.c.
void browser_sort | ( | struct BrowserState * | state | ) |
Sort the entries in the browser.
state | Browser state |
Call to qsort using browser_compare function. Some specific sort methods are not used via NNTP.
Definition at line 194 of file sort.c.