diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2025-01-24 18:27:47 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2025-01-24 18:27:47 -0500 |
commit | 8f4f89d5b67ae72eb55535ff8d744f5983b32737 (patch) | |
tree | 339dd79ce3695132782130d10eaffb3615ecc641 /foci.h | |
parent | b8446c868707ac1b86b482aac03002a2b585dbb6 (diff) |
add foci getchar, setchar hooks
Diffstat (limited to 'foci.h')
-rw-r--r-- | foci.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -75,6 +75,9 @@ register intptr_t tmp asm("r15"); #define STASH asm("push %r12; push %r13; push %r14") #define RESTORE asm("pop %r14; pop %r13; pop %r12") +extern void foci_putchar(int); +extern int foci_getchar(void); + void init(void); int depth(void); int compiling(void); |