mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 04:02:25 +00:00
23 lines
531 B
C
23 lines
531 B
C
/* voc 1.95 [2016/10/15]. Bootstrapping compiler for address size 8, alignment 8. xtspaSfF */
|
|
|
|
#ifndef Out__h
|
|
#define Out__h
|
|
|
|
#include "SYSTEM.h"
|
|
|
|
|
|
|
|
|
|
import void Out_Char (CHAR ch);
|
|
import void Out_Flush (void);
|
|
import void Out_Int (int64 x, int64 n);
|
|
import void Out_Ln (void);
|
|
import void Out_LongReal (LONGREAL x, int16 n);
|
|
import void Out_Open (void);
|
|
import void Out_Real (REAL x, int16 n);
|
|
import void Out_String (CHAR *str, LONGINT str__len);
|
|
import LONGREAL Out_Ten (int16 e);
|
|
import void *Out__init(void);
|
|
|
|
|
|
#endif // Out
|