minor fix

Signed-off-by: hayati ayguen <h_ayguen@web.de>
development
hayati ayguen 2019-07-12 00:06:51 +00:00
parent cfc56ba7e6
commit 7ef5e11b0b
1 changed files with 8 additions and 1 deletions

View File

@ -18,7 +18,11 @@
#define __CONVENIENCE_H
#include <stdint.h>
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
/* a collection of user friendly tools */
@ -173,7 +177,10 @@ void executeInBackground( char * file, char * args, char * searchStr[], char * r
extern uint32_t waveDataSize;
void waveWriteHeader(unsigned samplerate, unsigned freq, int bitsPerSample, int numChannels, FILE * f);
void waveFinalizeHeader();
void waveFinalizeHeader(FILE * f);
#ifdef __cplusplus
}
#endif
#endif /*__CONVENIENCE_H*/