diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-02-07 19:06:29 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-02-07 19:06:38 +0900 |
| commit | 0ae64ed2c00f66c7f3ddec8689169bacafff87ea (patch) | |
| tree | c72db385bca5de58910f2769168a7b0918309c21 /src/io.h | |
| parent | 7ba8a506a215846d14d71487807f5e525e9e5c16 (diff) | |
| download | ducc-0ae64ed2c00f66c7f3ddec8689169bacafff87ea.tar.gz ducc-0ae64ed2c00f66c7f3ddec8689169bacafff87ea.tar.zst ducc-0ae64ed2c00f66c7f3ddec8689169bacafff87ea.zip | |
feat: partially support float/double
Diffstat (limited to 'src/io.h')
| -rw-r--r-- | src/io.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -19,6 +19,7 @@ typedef struct { InFile* infile_open(const char* filename); bool infile_eof(InFile* f); char infile_peek_char(InFile* f); +char infile_peek_char2(InFile* f); char infile_next_char(InFile* f); bool infile_consume_if(InFile* f, char expected); |
