diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-28 19:49:45 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-28 19:49:45 +0200 |
commit | fc39c234ddd2606e75468c490a776898cef84459 (patch) | |
tree | 8e80e16d2e4d978f842b566eda026f0ff9bbadcf /src | |
parent | Rewrote r_cpyhead (diff) | |
download | lowbat-bsd-fc39c234ddd2606e75468c490a776898cef84459.tar.gz lowbat-bsd-fc39c234ddd2606e75468c490a776898cef84459.tar.bz2 lowbat-bsd-fc39c234ddd2606e75468c490a776898cef84459.tar.xz lowbat-bsd-fc39c234ddd2606e75468c490a776898cef84459.tar.zst lowbat-bsd-fc39c234ddd2606e75468c490a776898cef84459.zip |
r_loop rewrite in progress
Diffstat (limited to 'src')
-rw-r--r-- | src/n_notify.c | 2 | ||||
-rw-r--r-- | src/n_notify.h | 2 | ||||
-rw-r--r-- | src/n_speak.c | 2 | ||||
-rw-r--r-- | src/n_speak.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/n_notify.c b/src/n_notify.c index 94efe75..3798986 100644 --- a/src/n_notify.c +++ b/src/n_notify.c @@ -13,7 +13,7 @@ #include <jo_n_notify.h> void -jo_n_notify +n_notify (const char head[], const char body[], NotifyUrgency u, diff --git a/src/n_notify.h b/src/n_notify.h index 32ccd41..9bd1c44 100644 --- a/src/n_notify.h +++ b/src/n_notify.h @@ -19,7 +19,7 @@ #define JO_LOWBAT "lowbat" -void jo_n_notify( +void n_notify( const char[], const char[], NotifyUrgency, diff --git a/src/n_speak.c b/src/n_speak.c index 0146e82..a1266c7 100644 --- a/src/n_speak.c +++ b/src/n_speak.c @@ -13,7 +13,7 @@ #include <jo_n_speak.h> void -jo_n_speak(const char *msg) +n_speak(const char *msg) { espeak_ERROR err; int32_t samplerate; diff --git a/src/n_speak.h b/src/n_speak.h index 19d064c..3270292 100644 --- a/src/n_speak.h +++ b/src/n_speak.h @@ -29,6 +29,6 @@ enum #define JO_ESPEAK_VOICE "English" -void jo_n_speak(const char *); +void n_speak(const char *); #endif |