simplify
[heimdal.git] / lib / roken / rtbl.h
blob60bbc9f873f709e9108d28eeb5e358d1032219fd
1 /*
2 * Copyright (c) 2000,2004 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
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.
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.
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.
33 /* $Id$ */
35 #ifndef __rtbl_h__
36 #define __rtbl_h__
38 #ifndef ROKEN_LIB_FUNCTION
39 #ifdef _WIN32
40 #define ROKEN_LIB_FUNCTION _stdcall
41 #else
42 #define ROKEN_LIB_FUNCTION
43 #endif
44 #endif
46 #if !defined(__GNUC__) && !defined(__attribute__)
47 #define __attribute__(x)
48 #endif
50 #ifdef __cplusplus
51 extern "C" {
52 #endif
54 struct rtbl_data;
55 typedef struct rtbl_data *rtbl_t;
57 #define RTBL_ALIGN_LEFT 0
58 #define RTBL_ALIGN_RIGHT 1
60 /* flags */
61 #define RTBL_HEADER_STYLE_NONE 1
63 int ROKEN_LIB_FUNCTION
64 rtbl_add_column (rtbl_t, const char*, unsigned int);
66 int ROKEN_LIB_FUNCTION
67 rtbl_add_column_by_id (rtbl_t, unsigned int, const char*, unsigned int);
69 int ROKEN_LIB_FUNCTION
70 rtbl_add_column_entryv_by_id (rtbl_t table, unsigned int id,
71 const char *fmt, ...)
72 __attribute__ ((format (printf, 3, 0)));
74 int ROKEN_LIB_FUNCTION
75 rtbl_add_column_entry (rtbl_t, const char*, const char*);
77 int ROKEN_LIB_FUNCTION
78 rtbl_add_column_entryv (rtbl_t, const char*, const char*, ...)
79 __attribute__ ((format (printf, 3, 0)));
81 int ROKEN_LIB_FUNCTION
82 rtbl_add_column_entry_by_id (rtbl_t, unsigned int, const char*);
84 rtbl_t ROKEN_LIB_FUNCTION
85 rtbl_create (void);
87 void ROKEN_LIB_FUNCTION
88 rtbl_destroy (rtbl_t);
90 int ROKEN_LIB_FUNCTION
91 rtbl_format (rtbl_t, FILE*);
93 unsigned int ROKEN_LIB_FUNCTION
94 rtbl_get_flags (rtbl_t);
96 int ROKEN_LIB_FUNCTION
97 rtbl_new_row (rtbl_t);
99 int ROKEN_LIB_FUNCTION
100 rtbl_set_column_affix_by_id (rtbl_t, unsigned int, const char*, const char*);
102 int ROKEN_LIB_FUNCTION
103 rtbl_set_column_prefix (rtbl_t, const char*, const char*);
105 void ROKEN_LIB_FUNCTION
106 rtbl_set_flags (rtbl_t, unsigned int);
108 int ROKEN_LIB_FUNCTION
109 rtbl_set_prefix (rtbl_t, const char*);
111 int ROKEN_LIB_FUNCTION
112 rtbl_set_separator (rtbl_t, const char*);
114 #ifdef __cplusplus
116 #endif
118 #endif /* __rtbl_h__ */