blob: 3036c05b56025425f62c4ce7882ce9f520425799 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SCRIPT_NAMES_H
#define SCRIPT_NAMES_H
#include <glib.h>
G_BEGIN_DECLS
const char * get_script_name (GUnicodeScript script);
const char * get_script_name_for_tag (guint32 tag);
G_END_DECLS
#endif
|