fbd5090735c2a6e15dc127e06333d80c989758aa
[sort-networks.git] / src / sn-merge.c
1 /**
2  * libsortnetwork - src/sn-merge.c
3  * Copyright (C) 2008-2010  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 <ff at octo.it>
20  **/
21
22 #ifndef _ISOC99_SOURCE
23 # define _ISOC99_SOURCE
24 #endif
25 #ifndef _POSIX_C_SOURCE
26 # define _POSIX_C_SOURCE 200112L
27 #endif
28
29 #include <stdlib.h>
30 #include <stdio.h>
31
32 #include "sn_network.h"
33
34 void exit_usage (const char *name)
35 {
36   printf ("%s <file0> <file1>\n", name);
37   exit (1);
38 } /* void exit_usage */
39
40 int main (int argc, char **argv)
41 {
42   sn_network_t *n0;
43   sn_network_t *n1;
44   sn_network_t *n;
45
46   if (argc != 3)
47     exit_usage (argv[0]);
48
49   n0 = sn_network_read_file (argv[1]);
50   if (n0 == NULL)
51   {
52     printf ("n0 == NULL\n");
53     return (1);
54   }
55
56   n1 = sn_network_read_file (argv[2]);
57   if (n1 == NULL)
58   {
59     printf ("n1 == NULL\n");
60     return (1);
61   }
62
63   n = sn_network_combine (n0, n1, /* is power of two = */ 0);
64   sn_network_destroy (n0);
65   sn_network_destroy (n1);
66
67   sn_network_write (n, stdout);
68
69   return (0);
70 } /* int main */
71
72 /* vim: set shiftwidth=2 softtabstop=2 : */