@@ -19,8 +19,6 @@ | |||
#ifndef ESPEAK_COMMAND_H | |||
#define ESPEAK_COMMAND_H | |||
#include <unistd.h> | |||
#ifdef __cplusplus | |||
extern "C" | |||
{ |
@@ -25,6 +25,7 @@ | |||
#include <pthread.h> | |||
#include <semaphore.h> | |||
#include <stdbool.h> | |||
#include <stdint.h> | |||
#include <stdlib.h> | |||
#include <string.h> | |||
#include <sys/time.h> |
@@ -24,6 +24,7 @@ | |||
#include <errno.h> | |||
#include <pthread.h> | |||
#include <semaphore.h> | |||
#include <stdint.h> | |||
#include <stdlib.h> | |||
#include <string.h> | |||
#include <sys/time.h> | |||
@@ -34,6 +35,7 @@ | |||
#include <espeak-ng/espeak_ng.h> | |||
#include "speech.h" | |||
#include "espeak_command.h" | |||
#include "fifo.h" | |||
#include "wave.h" | |||
@@ -22,8 +22,6 @@ | |||
// Helps to add espeak commands in a first-in first-out queue | |||
// and run them asynchronously. | |||
#include "espeak_command.h" | |||
#ifdef __cplusplus | |||
extern "C" | |||
{ |
@@ -23,6 +23,7 @@ | |||
#include <ctype.h> | |||
#include <errno.h> | |||
#include <locale.h> | |||
#include <stdint.h> | |||
#include <stdio.h> | |||
#include <stdlib.h> | |||
#include <string.h> | |||
@@ -46,6 +47,7 @@ | |||
#include "synthesize.h" | |||
#include "voice.h" | |||
#include "translate.h" | |||
#include "espeak_command.h" | |||
#include "fifo.h" | |||
#include "event.h" | |||
#include "wave.h" |
@@ -20,8 +20,6 @@ | |||
#ifndef SPEECH_H | |||
#define SPEECH_H | |||
#include <sys/types.h> | |||
#ifdef __cplusplus | |||
extern "C" | |||
{ |
@@ -22,6 +22,7 @@ | |||
#include <assert.h> | |||
#include <math.h> | |||
#include <stdbool.h> | |||
#include <stdint.h> | |||
#include <stdio.h> | |||
#include <stdlib.h> | |||
#include <string.h> |
@@ -1,6 +1,6 @@ | |||
/* | |||
* Copyright (C) 2007, Gilles Casse <[email protected]> | |||
* Copyright (C) 2015 Reece H. Dunn | |||
* Copyright (C) 2015-2016 Reece H. Dunn | |||
* based on AudioIO.cc (Audacity-1.2.4b) and wavegen.cpp | |||
* | |||
* This program is free software; you can redistribute it and/or modify | |||
@@ -20,10 +20,6 @@ | |||
#ifndef WAVE_H | |||
#define WAVE_H | |||
#ifndef PLATFORM_DOS | |||
#include "stdint.h" | |||
#endif | |||
#ifdef __cplusplus | |||
extern "C" | |||
{ |