diff options
Diffstat (limited to 'src/jo_n_speak.h')
-rw-r--r-- | src/jo_n_speak.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/jo_n_speak.h b/src/jo_n_speak.h new file mode 100644 index 0000000..36dced4 --- /dev/null +++ b/src/jo_n_speak.h @@ -0,0 +1,21 @@ +/****************************************************************************************/ +/* */ +/* 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 <espeak/speak_lib.h> +#include <string.h> + +void jo_n_speak(const char *); + +#endif |