Sha256: fc12b3a67835aec61a28d16d8ba585cd86cce950a8b14c5d58752b80fdb6e03a
Contents?: true
Size: 493 Bytes
Versions: 25
Compression:
Stored size: 493 Bytes
Contents
#ifndef SASS_UTIL_STRING_H #define SASS_UTIL_STRING_H #include <string> namespace Sass { namespace Util { std::string rtrim(const std::string& str); std::string normalize_newlines(const std::string& str); std::string normalize_underscores(const std::string& str); std::string normalize_decimals(const std::string& str); char opening_bracket_for(char closing_bracket); char closing_bracket_for(char opening_bracket); } // namespace Sass } // namespace Util #endif // SASS_UTIL_STRING_H
Version data entries
25 entries across 16 versions & 2 rubygems