forked from Mirrors/freeswitch
54ff389b09
Using words in your grammar that aren't in the dictionary will segfault. Bug is already brought up with the pocketsphinx maintainer. /b git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12224 d0543943-73ff-0310-b7d9-9358b9ac24b2
15 lines
142 B
Plaintext
15 lines
142 B
Plaintext
#JSGF V1.0;
|
|
|
|
/**
|
|
* JSGF Grammar for example
|
|
*/
|
|
|
|
grammar example;
|
|
|
|
<yes> = [ yes ];
|
|
<no> = [ no ];
|
|
|
|
public <results> = [ <yes> | <no> ];
|
|
|
|
|