1 | /*
|
---|
2 | * Copyright (c) 2000,2004 Kungliga Tekniska Högskolan
|
---|
3 | * (Royal Institute of Technology, Stockholm, Sweden).
|
---|
4 | * All rights reserved.
|
---|
5 | *
|
---|
6 | * Redistribution and use in source and binary forms, with or without
|
---|
7 | * modification, are permitted provided that the following conditions
|
---|
8 | * are met:
|
---|
9 | *
|
---|
10 | * 1. Redistributions of source code must retain the above copyright
|
---|
11 | * notice, this list of conditions and the following disclaimer.
|
---|
12 | *
|
---|
13 | * 2. Redistributions in binary form must reproduce the above copyright
|
---|
14 | * notice, this list of conditions and the following disclaimer in the
|
---|
15 | * documentation and/or other materials provided with the distribution.
|
---|
16 | *
|
---|
17 | * 3. Neither the name of the Institute nor the names of its contributors
|
---|
18 | * may be used to endorse or promote products derived from this software
|
---|
19 | * without specific prior written permission.
|
---|
20 | *
|
---|
21 | * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
---|
22 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
---|
23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
---|
24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
---|
25 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
---|
26 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
---|
27 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
---|
28 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
---|
29 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
---|
30 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
---|
31 | * SUCH DAMAGE.
|
---|
32 | */
|
---|
33 | /* $Id$ */
|
---|
34 |
|
---|
35 | #ifndef __rtbl_h__
|
---|
36 | #define __rtbl_h__
|
---|
37 |
|
---|
38 | #ifndef ROKEN_LIB_FUNCTION
|
---|
39 | #ifdef _WIN32
|
---|
40 | #define ROKEN_LIB_FUNCTION
|
---|
41 | #define ROKEN_LIB_CALL __cdecl
|
---|
42 | #else
|
---|
43 | #define ROKEN_LIB_FUNCTION
|
---|
44 | #define ROKEN_LIB_CALL
|
---|
45 | #endif
|
---|
46 | #endif
|
---|
47 |
|
---|
48 | #if !defined(__GNUC__) && !defined(__attribute__)
|
---|
49 | #define __attribute__(x)
|
---|
50 | #endif
|
---|
51 |
|
---|
52 | #ifdef __cplusplus
|
---|
53 | extern "C" {
|
---|
54 | #endif
|
---|
55 |
|
---|
56 | struct rtbl_data;
|
---|
57 | typedef struct rtbl_data *rtbl_t;
|
---|
58 |
|
---|
59 | #define RTBL_ALIGN_LEFT 0
|
---|
60 | #define RTBL_ALIGN_RIGHT 1
|
---|
61 |
|
---|
62 | /* flags */
|
---|
63 | #define RTBL_HEADER_STYLE_NONE 1
|
---|
64 |
|
---|
65 | ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
|
---|
66 | rtbl_add_column (rtbl_t, const char*, unsigned int);
|
---|
67 |
|
---|
68 | ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
|
---|
69 | rtbl_add_column_by_id (rtbl_t, unsigned int, const char*, unsigned int);
|
---|
70 |
|
---|
71 | ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
|
---|
72 | rtbl_add_column_entryv_by_id (rtbl_t table, unsigned int id,
|
---|
73 | const char *fmt, ...)
|
---|
74 | __attribute__ ((format (printf, 3, 0)));
|
---|
75 |
|
---|
76 | ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
|
---|
77 | rtbl_add_column_entry (rtbl_t, const char*, const char*);
|
---|
78 |
|
---|
79 | ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
|
---|
80 | rtbl_add_column_entryv (rtbl_t, const char*, const char*, ...)
|
---|
81 | __attribute__ ((format (printf, 3, 0)));
|
---|
82 |
|
---|
83 | ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
|
---|
84 | rtbl_add_column_entry_by_id (rtbl_t, unsigned int, const char*);
|
---|
85 |
|
---|
86 | ROKEN_LIB_FUNCTION rtbl_t ROKEN_LIB_CALL
|
---|
87 | rtbl_create (void);
|
---|
88 |
|
---|
89 | ROKEN_LIB_FUNCTION void ROKEN_LIB_CALL
|
---|
90 | rtbl_destroy (rtbl_t);
|
---|
91 |
|
---|
92 | ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
|
---|
93 | rtbl_format (rtbl_t, FILE*);
|
---|
94 |
|
---|
95 | ROKEN_LIB_FUNCTION unsigned int ROKEN_LIB_CALL
|
---|
96 | rtbl_get_flags (rtbl_t);
|
---|
97 |
|
---|
98 | ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
|
---|
99 | rtbl_new_row (rtbl_t);
|
---|
100 |
|
---|
101 | ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
|
---|
102 | rtbl_set_column_affix_by_id (rtbl_t, unsigned int, const char*, const char*);
|
---|
103 |
|
---|
104 | ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
|
---|
105 | rtbl_set_column_prefix (rtbl_t, const char*, const char*);
|
---|
106 |
|
---|
107 | ROKEN_LIB_FUNCTION void ROKEN_LIB_CALL
|
---|
108 | rtbl_set_flags (rtbl_t, unsigned int);
|
---|
109 |
|
---|
110 | ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
|
---|
111 | rtbl_set_prefix (rtbl_t, const char*);
|
---|
112 |
|
---|
113 | ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
|
---|
114 | rtbl_set_separator (rtbl_t, const char*);
|
---|
115 |
|
---|
116 | #ifdef __cplusplus
|
---|
117 | }
|
---|
118 | #endif
|
---|
119 |
|
---|
120 | #endif /* __rtbl_h__ */
|
---|