+captive_reactos_towupper(): Fully Unicode-aware towupper() ReactOS wrapper.
authorlace <>
Sat, 17 Dec 2005 02:23:07 +0000 (02:23 +0000)
committerlace <>
Sat, 17 Dec 2005 02:23:07 +0000 (02:23 +0000)
src/libcaptive/rtl/Makefile.am
src/libcaptive/rtl/ctype.c [new file with mode: 0644]

index 745bcdd..b54b0c0 100644 (file)
@@ -1,6 +1,6 @@
 # $Id$
 # automake source for the run-time-library of libcaptive Makefile 
-# Copyright (C) 2002 Jan Kratochvil <project-captive@jankratochvil.net>
+# Copyright (C) 2002-2005 Jan Kratochvil <project-captive@jankratochvil.net>
 # 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -21,6 +21,7 @@ include $(top_srcdir)/src/libcaptive/Makefile-libcaptive.am
 
 noinst_LTLIBRARIES=librtl.la
 librtl_la_SOURCES= \
+               ctype.c \
                error.c \
                except.c \
                file.c \
diff --git a/src/libcaptive/rtl/ctype.c b/src/libcaptive/rtl/ctype.c
new file mode 100644 (file)
index 0000000..ac38c0f
--- /dev/null
@@ -0,0 +1,40 @@
+/* $Id$
+ * reactos character handling functions emulation of libcaptive
+ * Copyright (C) 2005 Jan Kratochvil <project-captive@jankratochvil.net>
+ * 
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; exactly version 2 of June 1991 is required
+ * 
+ * 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 General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+
+#include "config.h"
+
+#include <glib/gmessages.h>
+#include "reactos/ntos/rtl.h"  /* self */
+#include <wctype.h>
+
+
+/**
+ * captive_reactos_towupper:
+ * @c: Any-case character to convert.
+ *
+ * Wrapper of the system towupper() for the use by ReactOS.
+ * The ReactOS implementation does not provide full Unicode support.
+ *
+ * Returns: Uppercased @c. Original value is returned if the case cannot be
+ * changed.
+ */
+wchar_t captive_reactos_towupper(wchar_t c)
+{
+       return towupper(c);
+}