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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
* @ingroup file68_lib
* @file sc68/error68.h
* @author Benjamin Gerard
* @date 2003-08-08
* @brief Error message header.
*
*/
/* $Id: error68.h 126 2009-07-15 08:58:51Z benjihan $ */
/* Copyright (C) 1998-2009 Benjamin Gerard */
/** @defgroup file68_error Error message
* @ingroup file68_lib
*
* Provides error message facilities.
*
* @{
*/
/** Print a formatted error message.
*
* The error68() function prints an error message via
* the msg68_error() function.
*
* @param format printf() like format string
*
* @return error-code
* @retval -1
*/
int ;
int ;
/** Print a formatted error message (variable argument version).
*
* @see error68()
*/
int ;
int ;
/**
* @}
*/
/* #ifndef _FILE68_ERROR68_H_ */