bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1 | /* common.h - Common functions |
| 2 | |
| 3 | Copyright (C) 1993 Werner Almesberger <werner.almesberger@lrc.di.epfl.ch> |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 4 | Copyright (C) 2008-2014 Daniel Baumann <mail@daniel-baumann.ch> |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 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 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 Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 19 | The complete text of the GNU General Public License |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 20 | can be found in /usr/share/common-licenses/GPL-3 file. |
| 21 | */ |
| 22 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 23 | #ifndef _COMMON_H |
| 24 | #define _COMMON_H |
| 25 | |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 26 | void die(const char *msg, ...) __attribute((noreturn)); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 27 | |
| 28 | /* Displays a prinf-style message and terminates the program. */ |
| 29 | |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 30 | void pdie(const char *msg, ...) __attribute((noreturn)); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 31 | |
| 32 | /* Like die, but appends an error message according to the state of errno. */ |
| 33 | |
| 34 | void *alloc(int size); |
| 35 | |
| 36 | /* mallocs SIZE bytes and returns a pointer to the data. Terminates the program |
| 37 | if malloc fails. */ |
| 38 | |
| 39 | void *qalloc(void **root, int size); |
| 40 | |
| 41 | /* Like alloc, but registers the data area in a list described by ROOT. */ |
| 42 | |
| 43 | void qfree(void **root); |
| 44 | |
| 45 | /* Deallocates all qalloc'ed data areas described by ROOT. */ |
| 46 | |
| 47 | int min(int a, int b); |
| 48 | |
| 49 | /* Returns the smaller integer value of a and b. */ |
| 50 | |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 51 | char get_key(const char *valid, const char *prompt); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 52 | |
| 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 |