src/*.[ch]: Added GPLv2 license information.
[sort-networks.git] / src / sn-show.c
1 /**
2  * collectd - src/sn-show.c
3  * Copyright (C) 2008  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 #include <stdlib.h>
23 #include <stdio.h>
24
25 #include "sn_network.h"
26
27 int main (int argc, char **argv)
28 {
29   sn_network_t *n;
30   FILE *fh = NULL;
31
32   if (argc == 1)
33     fh = stdin;
34   else if (argc == 2)
35     fh = fopen (argv[1], "r");
36
37   if (fh == NULL)
38   {
39     printf ("fh == NULL!\n");
40     return (1);
41   }
42
43   n = sn_network_read (fh);
44
45   if (n == NULL)
46   {
47     printf ("n == NULL!\n");
48     return (1);
49   }
50
51   sn_network_show (n);
52
53   return (0);
54 } /* int main */
55
56 /* vim: set shiftwidth=2 softtabstop=2 : */