aboutsummaryrefslogtreecommitdiffstats
path: root/foci.h
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2025-01-24 18:27:47 -0500
committerClyne Sullivan <clyne@bitgloo.com>2025-01-24 18:27:47 -0500
commit8f4f89d5b67ae72eb55535ff8d744f5983b32737 (patch)
tree339dd79ce3695132782130d10eaffb3615ecc641 /foci.h
parentb8446c868707ac1b86b482aac03002a2b585dbb6 (diff)
add foci getchar, setchar hooks
Diffstat (limited to 'foci.h')
-rw-r--r--foci.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/foci.h b/foci.h
index 6a96f32..9a87723 100644
--- a/foci.h
+++ b/foci.h
@@ -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);