]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/strutl.h
Introduce tolower_ascii_unsafe() and use it for hashing
[apt.git] / apt-pkg / contrib / strutl.h
index f3591d65feb5d2c049f67d2ca4b7618061e80291..918ac89c741832f41a00117bf006d86ccc00e827 100644 (file)
@@ -140,6 +140,11 @@ bool CheckDomainList(const std::string &Host, const std::string &List);
 #define tolower_ascii  tolower_ascii_inline
 #define isspace_ascii  isspace_ascii_inline
 
+APT_CONST APT_HOT
+static inline int tolower_ascii_unsafe(int const c)
+{
+   return c | 0x20;
+}
 APT_CONST APT_HOT
 static inline int tolower_ascii_inline(int const c)
 {