summaryrefslogtreecommitdiff
path: root/PACE/pace/ctype.h
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/ctype.h')
-rw-r--r--PACE/pace/ctype.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/PACE/pace/ctype.h b/PACE/pace/ctype.h
index fbb9c28fd1b..ff8ca36b242 100644
--- a/PACE/pace/ctype.h
+++ b/PACE/pace/ctype.h
@@ -35,91 +35,117 @@ extern "C" {
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 8.1.
*/
+#if (PACE_HAS_POSIX_CLS_UOF)
PACE_INLINE int pace_isalnum (int c);
+#endif /* PACE_HAS_POSIX_CLS_UOF */
/**
PACE's implementation of the POSIX function isalpha.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 8.1.
*/
+#if (PACE_HAS_POSIX_CLS_UOF)
PACE_INLINE int pace_isalpha (int c);
+#endif /* PACE_HAS_POSIX_CLS_UOF */
/**
PACE's implementation of the POSIX function iscntrl.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 8.1.
*/
+#if (PACE_HAS_POSIX_CLS_UOF)
PACE_INLINE int pace_iscntrl (int c);
+#endif /* PACE_HAS_POSIX_CLS_UOF */
/**
PACE's implementation of the POSIX function isdigit.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 8.1.
*/
+#if (PACE_HAS_POSIX_CLS_UOF)
PACE_INLINE int pace_isdigit (int c);
+#endif /* PACE_HAS_POSIX_CLS_UOF */
/**
PACE's implementation of the POSIX function isgraph.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 8.1.
*/
+#if (PACE_HAS_POSIX_CLS_UOF)
PACE_INLINE int pace_isgraph (int c);
+#endif /* PACE_HAS_POSIX_CLS_UOF */
/**
PACE's implementation of the POSIX function islower.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 8.1.
*/
+#if (PACE_HAS_POSIX_CLS_UOF)
PACE_INLINE int pace_islower (int c);
+#endif /* PACE_HAS_POSIX_CLS_UOF */
/**
PACE's implementation of the POSIX function isprint.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 8.1.
*/
+#if (PACE_HAS_POSIX_CLS_UOF)
PACE_INLINE int pace_isprint (int c);
+#endif /* PACE_HAS_POSIX_CLS_UOF */
/**
PACE's implementation of the POSIX function ispunct.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 8.1.
*/
+#if (PACE_HAS_POSIX_CLS_UOF)
PACE_INLINE int pace_ispunct (int c);
+#endif /* PACE_HAS_POSIX_CLS_UOF */
/**
PACE's implementation of the POSIX function isspace.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 8.1.
*/
+#if (PACE_HAS_POSIX_CLS_UOF)
PACE_INLINE int pace_isspace (int c);
+#endif /* PACE_HAS_POSIX_CLS_UOF */
/**
PACE's implementation of the POSIX function isupper.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 8.1.
*/
+#if (PACE_HAS_POSIX_CLS_UOF)
PACE_INLINE int pace_isupper (int c);
+#endif /* PACE_HAS_POSIX_CLS_UOF */
/**
PACE's implementation of the POSIX function isxdigit.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 8.1.
*/
+#if (PACE_HAS_POSIX_CLS_UOF)
PACE_INLINE int pace_isxdigit (int c);
+#endif /* PACE_HAS_POSIX_CLS_UOF */
/**
PACE's implementation of the POSIX function tolower.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 8.1.
*/
+#if (PACE_HAS_POSIX_CLS_UOF)
PACE_INLINE int pace_tolower (int c);
+#endif /* PACE_HAS_POSIX_CLS_UOF */
/**
PACE's implementation of the POSIX function toupper.
See POSIX standard (Internation Standard ISO/IEC 9945-1:1996;
IEEE Std 1003.1, 1996 Edition), Section 8.1.
*/
+#if (PACE_HAS_POSIX_CLS_UOF)
PACE_INLINE int pace_toupper (int c);
+#endif /* PACE_HAS_POSIX_CLS_UOF */
#if defined (PACE_HAS_INLINE)
# if (PACE_HAS_POSIX)