summaryrefslogtreecommitdiff
path: root/lib/unictype
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2011-03-21 22:54:28 +0100
committerBruno Haible <bruno@clisp.org>2011-03-21 22:54:28 +0100
commitc526c7c14de7fb0047f779601b1726644c4cea59 (patch)
treec0b1023312f491f695fd76d947310acb3d58f94b /lib/unictype
parent08ca5cc80822b0f45f7a6090425df540c27c2d90 (diff)
downloadgnulib-c526c7c14de7fb0047f779601b1726644c4cea59.tar.gz
New module 'unictype/joiningtype-name'.
* modules/unictype/joiningtype-name: New file. * lib/unictype/joiningtype_name.c: New file.
Diffstat (limited to 'lib/unictype')
-rw-r--r--lib/unictype/joiningtype_name.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/unictype/joiningtype_name.c b/lib/unictype/joiningtype_name.c
new file mode 100644
index 0000000000..f1166ef653
--- /dev/null
+++ b/lib/unictype/joiningtype_name.c
@@ -0,0 +1,35 @@
+/* Arabic joining type of Unicode characters.
+ Copyright (C) 2011 Free Software Foundation, Inc.
+ Written by Bruno Haible <bruno@clisp.org>, 2011.
+
+ This program is free software: you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+#include <config.h>
+
+/* Specification. */
+#include "unictype.h"
+
+static const char u_joining_type_name[6][2] =
+{
+ "U", "T", "C", "L", "R", "D"
+};
+
+const char *
+uc_joining_type_name (int joining_type)
+{
+ if (joining_type >= 0
+ && joining_type < sizeof (u_joining_type_name) / sizeof (u_joining_type_name[0]))
+ return u_joining_type_name[joining_type];
+ return NULL;
+}