sbase/sort.c

67 lines
1.2 KiB
C
Raw Normal View History

2011-06-02 08:03:34 -04:00
/* See LICENSE file for copyright and license details. */
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "text.h"
#include "util.h"
static int linecmp(const char **, const char **);
static bool rflag = false;
2011-06-02 08:09:30 -04:00
static bool uflag = false;
static struct linebuf linebuf = EMPTY_LINEBUF;
2013-06-14 14:20:47 -04:00
static void
usage(void)
{
eprintf("usage: %s [-ru] [file...]\n", argv0);
}
2011-06-02 08:03:34 -04:00
int
main(int argc, char *argv[])
{
long i;
FILE *fp;
2013-06-14 14:20:47 -04:00
ARGBEGIN {
case 'r':
rflag = true;
break;
case 'u':
uflag = true;
break;
default:
usage();
} ARGEND;
if(argc == 0) {
getlines(stdin, &linebuf);
2013-06-14 14:20:47 -04:00
} else for(; argc > 0; argc--, argv++) {
if(!(fp = fopen(argv[0], "r")))
eprintf("fopen %s:", argv[0]);
getlines(fp, &linebuf);
2011-06-02 08:03:34 -04:00
fclose(fp);
}
2013-06-14 14:20:47 -04:00
qsort(linebuf.lines, linebuf.nlines, sizeof *linebuf.lines,
(int (*)(const void *, const void *))linecmp);
2011-06-02 08:03:34 -04:00
2013-06-14 14:20:47 -04:00
for(i = 0; i < linebuf.nlines; i++) {
if(!uflag || i == 0 || strcmp(linebuf.lines[i],
linebuf.lines[i-1]) != 0) {
fputs(linebuf.lines[i], stdout);
2013-06-14 14:20:47 -04:00
}
}
return EXIT_SUCCESS;
2011-06-02 08:03:34 -04:00
}
int
linecmp(const char **a, const char **b)
{
return strcmp(*a, *b) * (rflag ? -1 : +1);
}
2013-06-14 14:20:47 -04:00