Backspace sends DEL instead of ^H.
[spft.git] / UTF8.h
blob7c76df6a4bc223cd7832d217c684d0e9cf4f30e9
1 #ifndef UTF8_h
2 #define UTF8_h
5 class UTF8 {
6 public:
7 // These assume that the bytes are valid UTF8.
8 static int num_characters(const char* bytes, int length);
9 static int bytes_for_n_characters(const char* bytes, int length, int n);
13 #endif // !UTF8_h