repo.or.cz
/
vspell.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Avoid signed/unsigned char pitfalls when calling viet_is* functions
[vspell.git]
/
utils
/
keyb-test.cpp
blob
ac8b72baf172794561c8c34cdad414a2ab6a061b
1
#include
"keyboard.h"
2
#include <string>
3
4
using namespace
std
;
5
6
int
main
(
int
argc
,
char
**
argv
)
7
{
8
string s
;
9
set
<
string
>
ss
;
10
while
(
cin
>>
s
) {
11
keyboard_recover
(
s
.
c_str
(),
ss
);
12
}
13
return
0
;
14
}