]> pd.if.org Git - pdclib/blobdiff - functions/wctype/towupper.c
dos2unix
[pdclib] / functions / wctype / towupper.c
index e04ebc0f996e79fa9a10b5aa76cdfd49a76cae76..368ca2cdb526e32bc3b9c6d4e9f27e6fe296eb76 100644 (file)
@@ -1,41 +1,41 @@
-/* towupper( wint_t )\r
-\r
-   This file is part of the Public Domain C Library (PDCLib).\r
-   Permission is granted to use, modify, and / or redistribute at will.\r
-*/\r
-\r
-#include <wctype.h>\r
-#ifndef REGTEST\r
-#include "_PDCLIB_locale.h"\r
-\r
-wint_t _PDCLIB_towupper_l( wint_t wc, locale_t l )\r
-{\r
-    wint_t uwc = _PDCLIB_unpackwint( wc );\r
-    _PDCLIB_wcinfo_t *info = _PDCLIB_wcgetinfo( l, uwc );\r
-    if( info ) \r
-    {\r
-        uwc += info->upper_delta;\r
-    }\r
-    return uwc;\r
-}\r
-\r
-wint_t towupper( wint_t wc )\r
-{\r
-    return _PDCLIB_towupper_l( wc, _PDCLIB_threadlocale() );\r
-}\r
-\r
-#endif\r
-\r
-#ifdef TEST\r
-#include "_PDCLIB_test.h"\r
-\r
-int main( void )\r
-{\r
-    TESTCASE(towupper(0) == 0);\r
-    TESTCASE(towupper(L'a') == L'A');\r
-    TESTCASE(towupper(L'B') == L'B');\r
-    TESTCASE(towupper(L'0') == L'0');\r
-\r
-    return TEST_RESULTS;\r
-}\r
-#endif\r
+/* towupper( wint_t )
+
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#include <wctype.h>
+#ifndef REGTEST
+#include "_PDCLIB_locale.h"
+
+wint_t _PDCLIB_towupper_l( wint_t wc, locale_t l )
+{
+    wint_t uwc = _PDCLIB_unpackwint( wc );
+    _PDCLIB_wcinfo_t *info = _PDCLIB_wcgetinfo( l, uwc );
+    if( info ) 
+    {
+        uwc += info->upper_delta;
+    }
+    return uwc;
+}
+
+wint_t towupper( wint_t wc )
+{
+    return _PDCLIB_towupper_l( wc, _PDCLIB_threadlocale() );
+}
+
+#endif
+
+#ifdef TEST
+#include "_PDCLIB_test.h"
+
+int main( void )
+{
+    TESTCASE(towupper(0) == 0);
+    TESTCASE(towupper(L'a') == L'A');
+    TESTCASE(towupper(L'B') == L'B');
+    TESTCASE(towupper(L'0') == L'0');
+
+    return TEST_RESULTS;
+}
+#endif