Tizen 2.1 base
[external/device-mapper.git] / lib / format_text / text_export.h
1 /*
2  * Copyright (C) 2003-2004 Sistina Software, Inc. All rights reserved.  
3  * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
4  *
5  * This file is part of LVM2.
6  *
7  * This copyrighted material is made available to anyone wishing to use,
8  * modify, copy, or redistribute it subject to the terms and conditions
9  * of the GNU Lesser General Public License v.2.1.
10  *
11  * You should have received a copy of the GNU Lesser General Public License
12  * along with this program; if not, write to the Free Software Foundation,
13  * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
14  */
15
16 #ifndef _LVM_TEXT_EXPORT_H
17 #define _LVM_TEXT_EXPORT_H
18
19 #define outsize(args...) do {if (!out_size(args)) return_0;} while (0)
20 #define outhint(args...) do {if (!out_hint(args)) return_0;} while (0)
21 #define outfc(args...) do {if (!out_text_with_comment(args)) return_0;} while (0)
22 #define outf(args...) do {if (!out_text(args)) return_0;} while (0)
23 #define outnl(f) do {if (!out_newline(f)) return_0;} while (0)
24
25 struct formatter;
26 struct lv_segment;
27 struct config_node;
28
29 int out_size(struct formatter *f, uint64_t size, const char *fmt, ...)
30     __attribute__ ((format(printf, 3, 4)));
31
32 int out_hint(struct formatter *f, const char *fmt, ...)
33     __attribute__ ((format(printf, 2, 3)));
34
35 int out_text(struct formatter *f, const char *fmt, ...)
36     __attribute__ ((format(printf, 2, 3)));
37
38 int out_config_node(struct formatter *f, const struct config_node *cn);
39
40 int out_areas(struct formatter *f, const struct lv_segment *seg,
41               const char *type);
42
43 int out_text_with_comment(struct formatter *f, const char* comment, const char *fmt, ...)
44     __attribute__ ((format(printf, 3, 4)));
45
46 void out_inc_indent(struct formatter *f);
47 void out_dec_indent(struct formatter *f);
48 int out_newline(struct formatter *f);
49
50 #endif