mirror of
https://github.com/SimonFJ20/bfjit
synced 2026-01-16 05:27:30 +01:00
10 lines
116 B
C
10 lines
116 B
C
#ifndef RUNTIME_H
|
|
#define RUNTIME_H
|
|
|
|
#include <stdint.h>
|
|
|
|
uint8_t get_char(void);
|
|
void put_char(uint8_t v);
|
|
|
|
#endif
|