summaryrefslogtreecommitdiff
path: root/ace/OS_NS_ctype.inl
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-10-02 06:43:40 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-10-02 06:43:40 +0000
commit2f709d1cbef90db05b8643f40a28076371fe20cc (patch)
tree3aca04de34fc7505242e99dcf45a4196625c0469 /ace/OS_NS_ctype.inl
parent3cc43d546f4b8c7d45cccf68b6b7ebdda1138d05 (diff)
downloadATCD-2f709d1cbef90db05b8643f40a28076371fe20cc.tar.gz
ChangeLogTag:Fri Oct 1 23:41:11 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'ace/OS_NS_ctype.inl')
-rw-r--r--ace/OS_NS_ctype.inl22
1 files changed, 11 insertions, 11 deletions
diff --git a/ace/OS_NS_ctype.inl b/ace/OS_NS_ctype.inl
index 13b8e05a1aa..606b4f701da 100644
--- a/ace/OS_NS_ctype.inl
+++ b/ace/OS_NS_ctype.inl
@@ -4,7 +4,7 @@
#include "ace/os_include/os_ctype.h"
ACE_INLINE int
-ACE_OS::ace_isalnum (const ACE_TCHAR c)
+ACE_OS::ace_isalnum (ACE_TCHAR c)
{
#if defined (ACE_USES_WCHAR)
return iswalnum (c);
@@ -14,7 +14,7 @@ ACE_OS::ace_isalnum (const ACE_TCHAR c)
}
ACE_INLINE int
-ACE_OS::ace_isalpha (const ACE_TCHAR c)
+ACE_OS::ace_isalpha (ACE_TCHAR c)
{
#if defined (ACE_USES_WCHAR)
return iswalpha (c);
@@ -24,7 +24,7 @@ ACE_OS::ace_isalpha (const ACE_TCHAR c)
}
ACE_INLINE int
-ACE_OS::ace_iscntrl (const ACE_TCHAR c)
+ACE_OS::ace_iscntrl (ACE_TCHAR c)
{
#if defined (ACE_USES_WCHAR)
return iswcntrl (c);
@@ -34,7 +34,7 @@ ACE_OS::ace_iscntrl (const ACE_TCHAR c)
}
ACE_INLINE int
-ACE_OS::ace_isdigit (const ACE_TCHAR c)
+ACE_OS::ace_isdigit (ACE_TCHAR c)
{
#if defined (ACE_USES_WCHAR)
return iswdigit (c);
@@ -44,7 +44,7 @@ ACE_OS::ace_isdigit (const ACE_TCHAR c)
}
ACE_INLINE int
-ACE_OS::ace_isgraph (const ACE_TCHAR c)
+ACE_OS::ace_isgraph (ACE_TCHAR c)
{
#if defined (ACE_USES_WCHAR)
return iswgraph (c);
@@ -54,7 +54,7 @@ ACE_OS::ace_isgraph (const ACE_TCHAR c)
}
ACE_INLINE int
-ACE_OS::ace_islower (const ACE_TCHAR c)
+ACE_OS::ace_islower (ACE_TCHAR c)
{
#if defined (ACE_USES_WCHAR)
return iswlower (c);
@@ -64,7 +64,7 @@ ACE_OS::ace_islower (const ACE_TCHAR c)
}
ACE_INLINE int
-ACE_OS::ace_isprint (const ACE_TCHAR c)
+ACE_OS::ace_isprint (ACE_TCHAR c)
{
#if defined (ACE_USES_WCHAR)
return iswprint (c);
@@ -74,7 +74,7 @@ ACE_OS::ace_isprint (const ACE_TCHAR c)
}
ACE_INLINE int
-ACE_OS::ace_ispunct (const ACE_TCHAR c)
+ACE_OS::ace_ispunct (ACE_TCHAR c)
{
#if defined (ACE_USES_WCHAR)
return iswpunct (c);
@@ -84,7 +84,7 @@ ACE_OS::ace_ispunct (const ACE_TCHAR c)
}
ACE_INLINE int
-ACE_OS::ace_isspace (const ACE_TCHAR c)
+ACE_OS::ace_isspace (ACE_TCHAR c)
{
#if defined (ACE_USES_WCHAR)
return iswspace (c);
@@ -94,7 +94,7 @@ ACE_OS::ace_isspace (const ACE_TCHAR c)
}
ACE_INLINE int
-ACE_OS::ace_isupper (const ACE_TCHAR c)
+ACE_OS::ace_isupper (ACE_TCHAR c)
{
#if defined (ACE_USES_WCHAR)
return iswupper (c);
@@ -104,7 +104,7 @@ ACE_OS::ace_isupper (const ACE_TCHAR c)
}
ACE_INLINE int
-ACE_OS::ace_isxdigit (const ACE_TCHAR c)
+ACE_OS::ace_isxdigit (ACE_TCHAR c)
{
#if defined (ACE_USES_WCHAR)
return iswxdigit (c);