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
Shhh.. dont know what i did
[vspell.git]
/
syllable-test.cpp
blob
cda7cac8101f9438624892242397fa3d72825719
1
#include <iostream>
2
#include <string>
3
#include
"dictionary.h"
4
5
using namespace
std
;
6
7
int
main
()
8
{
9
Dictionary
::
Syllable i
;
10
string str
;
11
12
while
(
cin
>>
str
) {
13
cout
<<
i
.
parse
(
str
.
c_str
()) <<
": "
;
14
i
.
print
();
15
}
16
return
0
;
17
}