/****************************************************************************************/ /* */ /* File : jo_n_speak.h /_________/ */ /* Author : Joe | */ /* Date : 04/2020 | */ /* Info : Use espeak lib to speak | */ /* / | */ /* \ / */ /* \_____/ */ /* */ /****************************************************************************************/ #ifndef JO_N_SPEAK_H #define JO_N_SPEAK_H #include #include #include #include #include #include enum { JO_RET_FINE, JO_RET_RD_FAILED, JO_RET_ESPEAK_FAILED }; #define JO_ESPEAK_VOICE "English" void jo_n_speak(const char *); #endif