src/*.[ch]: Added GPLv2 license information.
[sort-networks.git] / src / sn-merge.c
1 /**
2  * collectd - src/sn-merge.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 void exit_usage (const char *name)
28 {
29   printf ("%s <file0> <file1>\n", name);
30   exit (1);
31 } /* void exit_usage */
32
33 int main (int argc, char **argv)
34 {
35   sn_network_t *n0;
36   sn_network_t *n1;
37   sn_network_t *n;
38
39   if (argc != 3)
40     exit_usage (argv[0]);
41
42   n0 = sn_network_read_file (argv[1]);
43   if (n0 == NULL)
44   {
45     printf ("n0 == NULL\n");
46     return (1);
47   }
48
49   n1 = sn_network_read_file (argv[2]);
50   if (n1 == NULL)
51   {
52     printf ("n1 == NULL\n");
53     return (1);
54   }
55
56   n = sn_network_combine (n0, n1);
57   sn_network_destroy (n0);
58   sn_network_destroy (n1);
59
60   sn_network_write (n, stdout);
61
62   return (0);
63 } /* int main */
64
65 /* vim: set shiftwidth=2 softtabstop=2 : */