summaryrefslogtreecommitdiff
path: root/ace/OS_NS_ctype.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/OS_NS_ctype.inl')
-rw-r--r--ace/OS_NS_ctype.inl9
1 files changed, 5 insertions, 4 deletions
diff --git a/ace/OS_NS_ctype.inl b/ace/OS_NS_ctype.inl
index 13b8e05a1aa..89a7270814d 100644
--- a/ace/OS_NS_ctype.inl
+++ b/ace/OS_NS_ctype.inl
@@ -114,29 +114,30 @@ ACE_OS::ace_isxdigit (const ACE_TCHAR c)
}
ACE_INLINE int
-ACE_OS::ace_tolower (int c)
+ACE_OS::to_lower (int c)
{
return tolower (c);
}
#if defined (ACE_HAS_WCHAR) && !defined (ACE_LACKS_TOWLOWER)
ACE_INLINE wint_t
-ACE_OS::ace_towlower (wint_t c)
+ACE_OS::to_lower (wint_t c)
{
return towlower (c);
}
#endif /* ACE_HAS_WCHAR && !ACE_LACKS_TOWLOWER */
ACE_INLINE int
-ACE_OS::ace_toupper (int c)
+ACE_OS::to_upper (int c)
{
return toupper (c);
}
#if defined (ACE_HAS_WCHAR) && !defined (ACE_LACKS_TOWUPPER)
ACE_INLINE wint_t
-ACE_OS::ace_towupper (wint_t c)
+ACE_OS::to_upper (wint_t c)
{
return towupper (c);
}
#endif /* ACE_HAS_WCHAR && !ACE_LACKS_TOWUPPER */
+