sort.c
author viric <viriketo@gmail.com>
Fri, 30 Mar 2012 18:56:20 +0200
changeset 33 ebbedaa090be
parent 4 b2dfe3374454
permissions -rw-r--r--
Adding what I had in the web for zparsetext (akcentiga)

#include <stdio.h>
#include <stdlib.h>
#include "dictre.h"

extern struct Word words[];
extern int nwords;

static int cmp_words(const void *v1, const void *v2)
{
    struct Word *w1 = (struct Word *) v1;
    struct Word *w2 = (struct Word *) v2;

    return strcmp(w1->w, w2->w);
}

int sort_words()
{
    printf("Sorting...\n");
    qsort(words, nwords, sizeof(words[0]), cmp_words);
}