forked from NUDT-compiler/nudt-compiler-cpp
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.
18 lines
335 B
18 lines
335 B
#ifndef SYLIB_H_
|
|
#define SYLIB_H_
|
|
|
|
int getint(void);
|
|
int getch(void);
|
|
float getfloat(void);
|
|
int getarray(int a[]);
|
|
int getfarray(float a[]);
|
|
void putint(int x);
|
|
void putch(int x);
|
|
void putfloat(float x);
|
|
void putarray(int n, const int a[]);
|
|
void putfarray(int n, const float a[]);
|
|
void starttime(void);
|
|
void stoptime(void);
|
|
|
|
#endif
|