Avoid signed/unsigned char pitfalls when calling viet_is* functions
[vspell.git] / utils / keyb-test.cpp
blobac8b72baf172794561c8c34cdad414a2ab6a061b
1 #include "keyboard.h"
2 #include <string>
4 using namespace std;
6 int main(int argc,char **argv)
8 string s;
9 set<string> ss;
10 while (cin >> s) {
11 keyboard_recover(s.c_str(),ss);
13 return 0;