aboutsummaryrefslogtreecommitdiff
path: root/stdlib/testsort.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/testsort.c')
-rw-r--r--stdlib/testsort.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/stdlib/testsort.c b/stdlib/testsort.c
deleted file mode 100644
index aa4332a568..0000000000
--- a/stdlib/testsort.c
+++ /dev/null
@@ -1,36 +0,0 @@
-#include <stdlib.h>
-#include <string.h>
-#include <stdio.h>
-
-static int
-compare (const void *a, const void *b)
-{
- return strcmp (*(char **) a, *(char **) b);
-}
-
-int
-main (void)
-{
- char bufs[500][20];
- char *lines[500];
- size_t lens[500];
- size_t i, j;
-
- srandom (1);
-
- for (i = 0; i < 500; ++i)
- {
- lens[i] = random() % 19;
- lines[i] = bufs[i];
- for (j = 0; j < lens[i]; ++j)
- lines[i][j] = random() % 26 + 'a';
- lines[i][j] = '\0';
- }
-
- qsort (lines, 500, sizeof (char *), compare);
-
- for (i = 0; i < 500 && lines[i] != NULL; ++i)
- puts (lines[i]);
-
- return 0;
-}