diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-19 21:22:14 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-19 21:22:14 +0200 |
commit | 30114ac62a2411e0a0722e33ec64610179509d15 (patch) | |
tree | cf8b6f7c7a3255a14025c4fada2aa6321cccf665 /src/jo_n_speak.h | |
parent | Bug fix (diff) | |
download | lowbat-bsd-30114ac62a2411e0a0722e33ec64610179509d15.tar.gz lowbat-bsd-30114ac62a2411e0a0722e33ec64610179509d15.tar.bz2 lowbat-bsd-30114ac62a2411e0a0722e33ec64610179509d15.tar.xz lowbat-bsd-30114ac62a2411e0a0722e33ec64610179509d15.tar.zst lowbat-bsd-30114ac62a2411e0a0722e33ec64610179509d15.zip |
Removed C main, new main is now in asm
Diffstat (limited to 'src/jo_n_speak.h')
-rw-r--r-- | src/jo_n_speak.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/jo_n_speak.h b/src/jo_n_speak.h index aedd837..79ca683 100644 --- a/src/jo_n_speak.h +++ b/src/jo_n_speak.h @@ -13,7 +13,6 @@ #ifndef JO_N_SPEAK_H #define JO_N_SPEAK_H -#include <jo_lowbat.h> #include <espeak/speak_lib.h> #include <string.h> #include <stdlib.h> @@ -21,6 +20,13 @@ #include <stdio.h> #include <unistd.h> +enum +{ + JO_RET_FINE, + JO_RET_RD_FAILED, + JO_RET_ESPEAK_FAILED +}; + #define JO_ESPEAK_VOICE "English" void jo_n_speak(const char *); |