diff options
Diffstat (limited to 'decoder/stringlib.h')
| -rw-r--r-- | decoder/stringlib.h | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/decoder/stringlib.h b/decoder/stringlib.h index b3097bd1..53e6fe50 100644 --- a/decoder/stringlib.h +++ b/decoder/stringlib.h @@ -18,6 +18,18 @@  #include <cstring>  #include <string>  #include <sstream> +#include <algorithm> + +struct toupperc { +  inline char operator()(char c) const { +    return std::toupper(c); +  } +}; + +inline std::string toupper(std::string s) { +  std::transform(s.begin(),s.end(),s.begin(),toupperc()); +  return s; +}  template <class Istr, class Isubstr> inline  bool match_begin(Istr bstr,Istr estr,Isubstr bsub,Isubstr esub) | 
