1 #ifndef SOUND_SPEECH_H
2 #define SOUND_SPEECH_H
3 
4 void sound_speech_set_volume(int percentage);
5 
6 void sound_speech_play_file(const char *filename);
7 
8 void sound_speech_stop(void);
9 
10 #endif // SOUND_SPEECH_H
11