]> pd.if.org Git - pdclib/blobdiff - functions/ctype/toupper.c
ctype
[pdclib] / functions / ctype / toupper.c
diff --git a/functions/ctype/toupper.c b/functions/ctype/toupper.c
new file mode 100644 (file)
index 0000000..00cb203
--- /dev/null
@@ -0,0 +1,33 @@
+/* $Id$ */
+
+/* toupper( int )
+
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#include <ctype.h>
+
+#ifndef REGTEST
+
+int toupper( int c )
+{
+    return _PDCLIB_locale_info.ctype[c].upper;
+}
+
+#endif
+
+#ifdef TEST
+#include <_PDCLIB_test.h>
+
+int main( void )
+{
+    TESTCASE( toupper( 'a' ) == 'A' );
+    TESTCASE( toupper( 'z' ) == 'Z' );
+    TESTCASE( toupper( 'A' ) == 'A' );
+    TESTCASE( toupper( 'Z' ) == 'Z' );
+    TESTCASE( toupper( '@' ) == '@' );
+    TESTCASE( toupper( '[' ) == '[' );
+    return TEST_RESULTS;
+}
+#endif