From 51806621006a9d54d368c7c033e59b2a3818f5ae Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Sat, 26 Feb 2022 23:34:42 -0500 Subject: Implement args_concat() in src/vox.c Implement args_concat() in src/vox.c to prepare to allow passing arbitrary arguments to text2wave --- include/xas/vox.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/xas/vox.h b/include/xas/vox.h index fd442a8..917eda1 100644 --- a/include/xas/vox.h +++ b/include/xas/vox.h @@ -11,13 +11,16 @@ #define XAS_VOX_ACTIVE (1 << 0) typedef struct _xas_vox { - const char *text2wave_path; xas_audio_format format; size_t buffer_size; int flags; + const char *text2wave_path; + int argn; + char **args; + int pid, stdin, -- cgit v1.2.3