blob: b00523f5ca74d4a74d840f667058dc9afb33f0be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* See LICENSE file for copyright and license details. */
#ifndef LIBHAIKU_H
#define LIBHAIKU_H
#include <errno.h>
/**
* Get a random generic poetic error message
*
* @return A random generic poetic error message
*/
const char *libhaiku_generic(void);
/**
* Get a poetic error message
*
* @param errnum `errno` value that the error message shall be selected for
* @param genericp Unless `NULL`, will be set to 1 if the function didn't have
* any haikus specific the the specified error, and had to
* return a generic haiku, and to 0 otherwise
* @return A poetic error message
*/
const char *libhaiku_strerror(int, int *);
/**
* Print a poetic error message
*
* @param prefix Unless `NULL` or empty, each line will be prefixed
* by the specified string followed by a colon and a space
* @param errnum `errno` value that the error message shall be selected for;
* if negative, a generic error message is printed
*/
void libhaiku_perror2(const char *, int);
/**
* Print a poetic error message
*
* @param prefix Unless `NULL` or empty, each line will be prefixed
* by the specified string followed by a colon and a space
*/
inline void
libhaiku_perror(const char *_libhaiku_prefix)
{
libhaiku_perror2(_libhaiku_prefix, errno);
}
#endif
|