From aa0370b08ea8a1ad679a746c7be21a874f264fb6 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 8 Aug 2016 00:49:04 +0300 Subject: Add ucase(), lcase(), casecmp(), alpha(), digit(), alnum() --- butl/path.ixx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'butl/path.ixx') diff --git a/butl/path.ixx b/butl/path.ixx index 26a9b3d..d1fa34c 100644 --- a/butl/path.ixx +++ b/butl/path.ixx @@ -3,7 +3,6 @@ // license : MIT; see accompanying LICENSE file #ifdef _WIN32 -# include // tolower(), toupper() # include // towlower(), towupper() #endif @@ -14,7 +13,7 @@ namespace butl inline char path_traits:: tolower (char c) { - return std::tolower (c); + return lcase (c); } template <> @@ -28,7 +27,7 @@ namespace butl inline char path_traits:: toupper (char c) { - return std::toupper (c); + return ucase (c); } template <> -- cgit v1.1