forked from r9y9/pyopenjtalk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
Submodule open_jtalk
updated
5 files
+1 −1 | src/CMakeLists.txt | |
+4 −1 | src/bin/open_jtalk.c | |
+1 −1 | src/mecab/src/string_buffer.h | |
+13 −1 | src/text2mecab/text2mecab.c | |
+1 −1 | src/text2mecab/text2mecab.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# distutils: language = c++ | ||
|
||
cdef extern from "text2mecab.h": | ||
void text2mecab(char *output, const char *input) | ||
int text2mecab(char *output, size_t sizeOfOutput, const char *input) |