Sha256: 0c5678785b063b7ec04d5fc55ffa408539a24db5642c6b28e83f15d714e9ff01

Contents?: true

Size: 1.15 KB

Versions: 92

Compression:

Stored size: 1.15 KB

Contents

#ifndef SASS_UTF8_STRING_H
#define SASS_UTF8_STRING_H

#include <string>
#include "utf8.h"

namespace Sass {
  namespace UTF_8 {

    // naming conventions:
    // offset: raw byte offset (0 based)
    // position: code point offset (0 based)
    // index: code point offset (1 based or negative)

    // function that will count the number of code points (utf-8 characters) from the beginning to the given end
    size_t code_point_count(const std::string& str, size_t start, size_t end);
    size_t code_point_count(const std::string& str);

    // function that will return the byte offset of a code point in a
    size_t offset_at_position(const std::string& str, size_t position);

    // function that returns number of bytes in a character in a string
    size_t code_point_size_at_offset(const std::string& str, size_t offset);

    // function that will return a normalized index, given a crazy one
    size_t normalize_index(int index, size_t len);

    #ifdef _WIN32
    // functions to handle unicode paths on windows
    std::string convert_from_utf16(const std::wstring& wstr);
    std::wstring convert_to_utf16(const std::string& str);
    #endif

  }
}

#endif

Version data entries

92 entries across 75 versions & 17 rubygems

Version Path
sassc-1.10.1 ext/libsass/src/utf8_string.hpp
sassc-1.10.0 ext/libsass/src/utf8_string.hpp
blackboard-3.1.9 lib/site_template/node_modules/node-sass/src/libsass/src/utf8_string.hpp
sassc-1.9.0 ext/libsass/src/utf8_string.hpp
sassc-1.8.5 ext/libsass/src/utf8_string.hpp
sassc-1.8.4 ext/libsass/src/utf8_string.hpp
sassc-1.8.3 ext/libsass/src/utf8_string.hpp
sassc-1.8.2 ext/libsass/src/utf8_string.hpp
sassc-1.8.1 ext/libsass/src/utf8_string.hpp
sassc-1.8.0 ext/libsass/src/utf8_string.hpp
sassc-1.8.0.pre2 ext/libsass/src/utf8_string.hpp
sassc-1.8.0.pre1 ext/libsass/src/utf8_string.hpp