Merge Irssi 0.8.16-rc1
[silc.git] / apps / irssi / src / core / args.c
1 /*
2  args.c : small frontend to GOption command line argument parser
3
4     Copyright (C) 1999-2001 Timo Sirainen
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License along
17     with this program; if not, write to the Free Software Foundation, Inc.,
18     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #include "module.h"
22 #include "args.h"
23
24 static GOptionContext *context = NULL;
25
26 void args_register(GOptionEntry *options)
27 {
28         if (context == NULL)
29                 context = g_option_context_new("");
30
31         g_option_context_add_main_entries(context, options, "Irssi");
32 }
33
34 void args_execute(int argc, char *argv[])
35 {
36         GError* error = NULL;
37
38         if (context == NULL)
39                 return;
40
41         g_option_context_parse(context, &argc, &argv, &error);
42         g_option_context_free(context);
43         context = NULL;
44
45         if (error != NULL) {
46                 printf("%s\n"
47                        "Run '%s --help' to see a full list of "
48                        "available command line options.\n",
49                        error->message, argv[0]);
50                 exit(1);
51         }
52 }