Browse Source

fifo.c: Fix -Wmissing-prototypes warnings.

master
Reece H. Dunn 7 years ago
parent
commit
6d168ead22
2 changed files with 6 additions and 6 deletions
  1. 1
    1
      src/libespeak-ng/fifo.c
  2. 5
    5
      src/libespeak-ng/fifo.h

+ 1
- 1
src/libespeak-ng/fifo.c View File

@@ -58,7 +58,7 @@ static int my_stop_is_acknowledged = 0;
static void *say_thread(void *);

static espeak_ng_STATUS push(t_espeak_command *the_command);
static t_espeak_command *pop();
static t_espeak_command *pop(void);
static void init(int process_parameters);
static int node_counter = 0;


+ 5
- 5
src/libespeak-ng/fifo.h View File

@@ -29,7 +29,7 @@ extern "C"

// Initialize the fifo component.
// First function to be called.
void fifo_init();
void fifo_init(void);

// Add an espeak command.
//
@@ -44,15 +44,15 @@ espeak_ng_STATUS fifo_add_command(t_espeak_command *c);
espeak_ng_STATUS fifo_add_commands(t_espeak_command *c1, t_espeak_command *c2);

// The current running command must be stopped and the awaiting commands are cleared.
espeak_ng_STATUS fifo_stop();
espeak_ng_STATUS fifo_stop(void);

// Is there a running command?
// Returns 1 if yes; 0 otherwise.
int fifo_is_busy();
int fifo_is_busy(void);

// Terminate the fifo component.
// Last function to be called.
void fifo_terminate();
void fifo_terminate(void);

// Indicates if the running command is still enabled.
//
@@ -61,7 +61,7 @@ void fifo_terminate();
// stopping speech as soon as a cancel command is applied.
//
// Returns 1 if yes, or 0 otherwise.
int fifo_is_command_enabled();
int fifo_is_command_enabled(void);

#ifdef __cplusplus
}

Loading…
Cancel
Save