summaryrefslogtreecommitdiffstats
path: root/include/xas
diff options
context:
space:
mode:
authorXANTRONIX Development2022-02-26 23:42:10 -0500
committerXANTRONIX Development2022-02-26 23:42:10 -0500
commit9e6c7b8c46df662a8777742ccb150c1bfff5d421 (patch)
tree71485d367b3fafd17266682fb7627391081e3a21 /include/xas
parent4d675ce17f3e61095e2ee9f7deac671dc5d40a95 (diff)
downloadxas-9e6c7b8c46df662a8777742ccb150c1bfff5d421.tar.gz
xas-9e6c7b8c46df662a8777742ccb150c1bfff5d421.tar.bz2
xas-9e6c7b8c46df662a8777742ccb150c1bfff5d421.zip
Change xas_vox_new() argument order
Diffstat (limited to 'include/xas')
-rw-r--r--include/xas/vox.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/xas/vox.h b/include/xas/vox.h
index 93777b0..e2d3e53 100644
--- a/include/xas/vox.h
+++ b/include/xas/vox.h
@@ -33,9 +33,9 @@ typedef struct _xas_vox {
FILE *in;
} xas_vox;
-xas_vox *xas_vox_new(const char *text2wave_path,
- xas_audio_format format,
- size_t buffer_size);
+xas_vox *xas_vox_new(xas_audio_format format,
+ size_t buffer_size,
+ const char *text2wave_path);
void xas_vox_destroy(xas_vox *vox);