mirror of
https://github.com/SimonFJ20/bfjit
synced 2026-01-16 05:27:30 +01:00
8 lines
166 B
C
8 lines
166 B
C
#include "runtime.h"
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
uint8_t get_char(void) { return (uint8_t)fgetc(stdin); }
|
|
|
|
void put_char(uint8_t v) { fputc(v, stdout); }
|