You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
659 B
30 lines
659 B
#pragma once
|
|
|
|
int getint(void);
|
|
int getch(void);
|
|
int getarray(int a[]);
|
|
float getfloat(void);
|
|
int getfarray(float a[]);
|
|
|
|
void putint(int x);
|
|
void putch(int x);
|
|
void putarray(int n, int a[]);
|
|
void putfloat(float x);
|
|
void putfarray(int n, float a[]);
|
|
void puts(int s[]);
|
|
|
|
void _sysy_starttime(int lineno);
|
|
void _sysy_stoptime(int lineno);
|
|
void starttime(void);
|
|
void stoptime(void);
|
|
|
|
int read_map(void);
|
|
int* memset(int* ptr, int value, int count);
|
|
int* sysy_alloc_i32(int count);
|
|
float* sysy_alloc_f32(int count);
|
|
void sysy_free_i32(int* ptr);
|
|
void sysy_free_f32(float* ptr);
|
|
void sysy_zero_i32(int* ptr, int count);
|
|
void sysy_zero_f32(float* ptr, int count);
|
|
|