summaryrefslogtreecommitdiff
path: root/PACE/pace/ctype.h
diff options
context:
space:
mode:
authorjoeh <joeh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-14 21:09:15 +0000
committerjoeh <joeh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-14 21:09:15 +0000
commitdba98edf7abdd0ad3d4d739c0959902d6505ade0 (patch)
tree4f3e5bdc1386f6c9b820ea4bd994c423b06ccf5e /PACE/pace/ctype.h
parent0bf86b290ea1c43fb5e18a94e3781347cc196b3f (diff)
downloadATCD-dba98edf7abdd0ad3d4d739c0959902d6505ade0.tar.gz
Fri Jul 14 15:55:24 2000 Joe Hoffert <joeh@cs.wustl.edu>
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)