sort.c
changeset 4 b2dfe3374454
parent 0 7f37716d4f1e
--- a/sort.c	Sat Aug 11 16:01:25 2007 +0200
+++ b/sort.c	Sat Aug 11 16:12:27 2007 +0200
@@ -15,5 +15,6 @@
 
 int sort_words()
 {
+    printf("Sorting...\n");
     qsort(words, nwords, sizeof(words[0]), cmp_words);
 }