repo.or.cz
/
spft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Backspace sends DEL instead of ^H.
[spft.git]
/
UTF8.h
blob
7c76df6a4bc223cd7832d217c684d0e9cf4f30e9
1
#ifndef UTF8_h
2
#define UTF8_h
3
4
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
);
10
};
11
12
13
#endif
// !UTF8_h
14