blob: ae81d3aaa96931cb76d7d1d209e36b059e5cd064 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef __TEST_COMMON_H__
#define __TEST_COMMON_H__
char * diff_with_file (const char *file,
char *text,
gssize len,
GError **error);
void print_attribute (PangoAttribute *attr,
GString *string);
void print_attributes (GSList *attrs,
GString *string);
void print_attr_list (PangoAttrList *attrs,
GString *string);
GSList *attr_list_to_list (PangoAttrList *attrs);
#endif
|