fishtalk/include/fishtalk_int.h
2026-05-23 07:24:32 +09:00

13 lines
245 B
C

#include <fishtalk_phon.h>
#define FT_IS_SKIPPABLE(x) ((x) == ' ' || (x) == '\t')
struct ft_handle {
FT_SAMPLE_PROC sample;
int rate;
char buffer[512 * 1024];
long buffer_size;
};
void ft_cmd_queue(FT_HANDLE handle, const char* buffer);