forked from adhearsion/cspeech
-
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
1 parent
49cb35f
commit 8b497d7
Showing
4 changed files
with
26 additions
and
5 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -26,7 +26,8 @@ lib_LTLIBRARIES = libcspeech-@[email protected] | |
## rules which invoke the C++ compiler to produce a libtool object file (.lo) | ||
## from each source file. Note that it is not necessary to list header files | ||
## which are already listed elsewhere in a _HEADERS variable assignment. | ||
libcspeech_@CSPEECH_API_VERSION@_la_SOURCES = cspeech/nlsml.cc \ | ||
libcspeech_@CSPEECH_API_VERSION@_la_SOURCES = cspeech.cc \ | ||
cspeech/nlsml.cc \ | ||
cspeech/srgs.cc | ||
|
||
## Instruct libtool to include ABI version information in the generated shared | ||
|
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* cspeech - Speech document (SSML, SRGS, NLSML) modelling and matching for C | ||
* Copyright (C) 2013, Grasshopper | ||
* | ||
* License: MIT | ||
* | ||
* Contributor(s): | ||
* Chris Rienzo <[email protected]> | ||
* | ||
* cspeech.cc | ||
* | ||
*/ | ||
|
||
static inline int cspeech_zstr(const char *s) | ||
{ | ||
return !s || *s == '\0'; | ||
} |
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