diff options
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 |