docs: Clarify GSocketClient reuse policy
[platform/upstream/glib.git] / gio / data-to-c.c
1 /*
2  * Copyright © 2011 Red Hat, Inc
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the licence, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  *
19  * Author: Alexander Larsson <alexl@redhat.com>
20  */
21
22  #include <glib.h>
23
24 int
25 main (int argc, char **argv)
26 {
27   char *content;
28   int i;
29   GError *error = NULL;
30
31   if (argc != 3)
32     {
33       g_printerr ("Usage: data-to-c <filename> <variable>");
34       return 1;
35     }
36
37   if (!g_file_get_contents (argv[1], &content, NULL, &error))
38     {
39       g_printerr ("%s", error->message);
40       return 1;
41     }
42
43   g_print ("const char %s[] = \"", argv[2]);
44   
45   for (i = 0; content[i] != 0; i++) {
46     g_print ("\\x%02x", (int)content[i]);
47   }
48   
49   g_print ("\";\n");
50   return 0;
51 }