File: zbogotest.c

package info (click to toggle)
bogosort 0.4.2-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 708 kB
  • ctags: 227
  • sloc: sh: 3,037; ansic: 1,846; makefile: 107
file content (79 lines) | stat: -rw-r--r-- 2,050 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
   bogosort - sorts or doesn't sort files or its standard input

   Copyright (C) 2000, 2001, 2002 Ulrik Haugen

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

   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, write to the Free Software Foundation,
   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
*/

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include <sys/types.h>
#include "system.h"

#if HAVE_GETOPT_H
# include <getopt.h>
#else
# include "getopt.h"
#endif /* HAVE_GETOPT_H */

#include <stdio.h>
#include "getlines.h"
#include "sortedp.h"

char *xmalloc();
char *xrealloc();
char *xstrdup();

/* The name the program was run with, stripped of any leading path. */
char *program_name;

int
main(int argc, char **argv)
{
    char **lines = NULL;
    int numlines = 0;
    char *temp = NULL;
    char *iname = NULL;
    FILE *ifile = NULL;

    temp = program_name = argv[0];	/* The name the program was run with */
    while (*temp != '\0')		/* stripped of any leading path.     */
	if (*(temp++) == '/')
	    program_name = temp;
    /* get input file */
    if (argc != 2) {
	fprintf(stderr, "%s, usage: %s filename\n", program_name, program_name);
	exit(EXIT_FAILURE);
    }

    iname = argv[1];
    ifile = fopen(iname, "r");
    if (!ifile) {
	fprintf(stderr, "%s cannot open %s for reading\n", program_name, iname);
	exit(EXIT_FAILURE);
    }

    lines = getlines(ifile, '\n');

    for (numlines = 0; lines[numlines] != NULL; numlines++) ;

    if (sortedp(lines))
	return EXIT_SUCCESS;
    return EXIT_FAILURE;
}