This commit is contained in:
Nishi 2026-05-23 02:26:17 +09:00
commit 57a53f4c1f
153 changed files with 136173 additions and 0 deletions

13
include/fishtalk_int.h Normal file
View file

@ -0,0 +1,13 @@
#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);