aboutsummaryrefslogtreecommitdiffstats
path: root/src/jo_n_speak.h
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-27 01:02:18 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-27 01:02:18 +0200
commitea0eca4f717d7f4408273613a566f3550d27085b (patch)
treeb1c1fa062823bb36bbd8bb9dab6437c83c229eec /src/jo_n_speak.h
parentMakefile change (diff)
downloadlowbat-bsd-ea0eca4f717d7f4408273613a566f3550d27085b.tar.gz
lowbat-bsd-ea0eca4f717d7f4408273613a566f3550d27085b.tar.bz2
lowbat-bsd-ea0eca4f717d7f4408273613a566f3550d27085b.tar.xz
lowbat-bsd-ea0eca4f717d7f4408273613a566f3550d27085b.tar.zst
lowbat-bsd-ea0eca4f717d7f4408273613a566f3550d27085b.zip
Rewrite started
Diffstat (limited to 'src/jo_n_speak.h')
-rw-r--r--src/jo_n_speak.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/jo_n_speak.h b/src/jo_n_speak.h
deleted file mode 100644
index 79ca683..0000000
--- a/src/jo_n_speak.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/****************************************************************************************/
-/* */
-/* 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>
-#include <stdlib.h>
-#include <stddef.h>
-#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 *);
-
-#endif