aboutsummaryrefslogtreecommitdiffstats
path: root/src/jo_n_speak.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/jo_n_speak.c')
-rw-r--r--src/jo_n_speak.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/jo_n_speak.c b/src/jo_n_speak.c
new file mode 100644
index 0000000..4db4113
--- /dev/null
+++ b/src/jo_n_speak.c
@@ -0,0 +1,29 @@
+/****************************************************************************************/
+/* */
+/* File : jo_n_speak.c /_________/ */
+/* Author : Joe | */
+/* Date : 04/2020 | */
+/* Info : Uses espeak lib to speak | */
+/* / | */
+/* \ / */
+/* \_____/ */
+/* */
+/****************************************************************************************/
+
+#include <jo_n_speak.h>
+
+void
+jo_n_speak(const char *msg)
+{
+ espeak_Initialize(AUDIO_OUTPUT_PLAYBACK, 0, 0x0, 0);
+ espeak_Synth(msg,
+ strlen(msg),
+ 0,
+ POS_CHARACTER,
+ 0,
+ espeakCHARS_UTF8 | espeakENDPAUSE,
+ 0x0,
+ 0x0);
+ espeak_Synchronize();
+ espeak_Terminate();
+}