CAP/TPfutures/MiniC-futures/include/compat.h
2024-12-09 13:00:58 +01:00

13 lines
258 B
C

#include "stdio.h"
typedef char * string;
typedef int bool;
static const int true = 1;
static const int false = 0;
void print_int(int i) {printf("%i",i);}
void println_int(int i) {printf("%i\n",i);}
void print_string(string);
void println_string(string);