From 1743fea0d8266c70a4c0273205481bed3f3ed443 Mon Sep 17 00:00:00 2001 From: lace <> Date: Sat, 17 Dec 2005 02:23:07 +0000 Subject: [PATCH] +captive_reactos_towupper(): Fully Unicode-aware towupper() ReactOS wrapper. --- src/libcaptive/rtl/Makefile.am | 3 ++- src/libcaptive/rtl/ctype.c | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 src/libcaptive/rtl/ctype.c diff --git a/src/libcaptive/rtl/Makefile.am b/src/libcaptive/rtl/Makefile.am index 745bcdd..b54b0c0 100644 --- a/src/libcaptive/rtl/Makefile.am +++ b/src/libcaptive/rtl/Makefile.am @@ -1,6 +1,6 @@ # $Id$ # automake source for the run-time-library of libcaptive Makefile -# Copyright (C) 2002 Jan Kratochvil +# Copyright (C) 2002-2005 Jan Kratochvil # # 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 index 0000000..ac38c0f --- /dev/null +++ b/src/libcaptive/rtl/ctype.c @@ -0,0 +1,40 @@ +/* $Id$ + * reactos character handling functions emulation of libcaptive + * Copyright (C) 2005 Jan Kratochvil + * + * 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 +#include "reactos/ntos/rtl.h" /* self */ +#include + + +/** + * 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); +} -- 1.8.3.1