gladish: add menu items for reactivating jackdbus and a2jmidid. Fixes #132
[ladish.git] / common / file.c
blobb9b869f0d66dcee4f5d0f519012da7de30961d51
1 /* -*- Mode: C ; c-basic-offset: 2 -*- */
2 /*
3 * LADI Session Handler (ladish)
5 * Copyright (C) 2010 Nedko Arnaudov <nedko@arnaudov.name>
6 * Copyright (C) 2010 Nikita Zlobin <cook60020tmp@mail.ru>
8 **************************************************************************
9 * This file contains the code that implements the about dialog
10 **************************************************************************
12 * LADI Session Handler is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * LADI Session Handler is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with LADI Session Handler. If not, see <http://www.gnu.org/licenses/>
24 * or write to the Free Software Foundation, Inc.,
25 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
28 #include "file.h"
30 #include <sys/stat.h>
31 #include <unistd.h>
32 #include <fcntl.h>
33 #include <stdlib.h>
35 char * read_file_contents(const char * filename)
37 int fd;
38 struct stat st;
39 char * buffer;
41 if (stat(filename, &st) != 0)
43 return NULL;
46 fd = open(filename, O_RDONLY);
47 if (fd == -1)
49 return NULL;
52 buffer = malloc(st.st_size + 1);
53 if (buffer == NULL)
55 close(fd);
56 return NULL;
59 if (read(fd, buffer, (size_t)st.st_size) != (ssize_t)st.st_size)
61 free(buffer);
62 buffer = NULL;
64 else
66 buffer[st.st_size] = 0;
69 close(fd);
71 return buffer;