blob: c15efb538ba369d8cabcc140dbbd882f2f49a64f [file] [log] [blame]
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001/* common.h - Common functions
2
3 Copyright (C) 1993 Werner Almesberger <werner.almesberger@lrc.di.epfl.ch>
Matt Mower18794c82015-11-11 16:22:45 -06004 Copyright (C) 2008-2014 Daniel Baumann <mail@daniel-baumann.ch>
bigbiff bigbiff9c754052013-01-09 09:09:08 -05005
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 3 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
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
18
Matt Mower18794c82015-11-11 16:22:45 -060019 The complete text of the GNU General Public License
bigbiff bigbiff9c754052013-01-09 09:09:08 -050020 can be found in /usr/share/common-licenses/GPL-3 file.
21*/
22
bigbiff bigbiff9c754052013-01-09 09:09:08 -050023#ifndef _COMMON_H
24#define _COMMON_H
25
Matt Mower18794c82015-11-11 16:22:45 -060026void die(const char *msg, ...) __attribute((noreturn));
bigbiff bigbiff9c754052013-01-09 09:09:08 -050027
28/* Displays a prinf-style message and terminates the program. */
29
Matt Mower18794c82015-11-11 16:22:45 -060030void pdie(const char *msg, ...) __attribute((noreturn));
bigbiff bigbiff9c754052013-01-09 09:09:08 -050031
32/* Like die, but appends an error message according to the state of errno. */
33
34void *alloc(int size);
35
36/* mallocs SIZE bytes and returns a pointer to the data. Terminates the program
37 if malloc fails. */
38
39void *qalloc(void **root, int size);
40
41/* Like alloc, but registers the data area in a list described by ROOT. */
42
43void qfree(void **root);
44
45/* Deallocates all qalloc'ed data areas described by ROOT. */
46
47int min(int a, int b);
48
49/* Returns the smaller integer value of a and b. */
50
Matt Mower18794c82015-11-11 16:22:45 -060051char get_key(const char *valid, const char *prompt);
bigbiff bigbiff9c754052013-01-09 09:09:08 -050052
53/* Displays PROMPT and waits for user input. Only characters in VALID are
54 accepted. Terminates the program on EOF. Returns the character. */
55
56#endif