2024-07-21 02:21:47 +12:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2024-07-21 02:04:32 +12:00
|
|
|
#ifndef __RUNTIME_H__
|
|
|
|
#define __RUNTIME_H__
|
|
|
|
|
|
|
|
int add(int a, int b);
|
|
|
|
int subtract(int a, int b);
|
|
|
|
int divide(int a, int b);
|
|
|
|
int multiply(int a, int b);
|
|
|
|
|
|
|
|
void print_str(const char* s);
|
|
|
|
void print_num(int n);
|
|
|
|
|
|
|
|
#endif
|