Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/arjo129/uSpeech
Browse files Browse the repository at this point in the history
Conflicts:
	vocab.cpp
  • Loading branch information
arjo129 committed Feb 23, 2014
2 parents 82299d3 + 427ae8b commit fe60308
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion vocab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
syllable::syllable(){
f = 0; e = 0; o = 0; s = 0; h = 0; v = 0;
}
void syllable::reset(){
f = 0; e = 0; o = 0; s = 0; h = 0; v = 0;
}
/***
* Classify a character into f,e,o,s,h; Call during main loop
* @param c the phoneme
Expand Down Expand Up @@ -61,4 +64,4 @@ int* syllable::tointptr(){
matrix[4] = h;
matrix[5] = s;
return matrix;
}
}

0 comments on commit fe60308

Please sign in to comment.