📄 relocate_io.h
字号:
/*
* File: relocate_io.h
* Purpose: Prototypes for common relocatable input/output routines
*
* Notes:
*
*/
#ifndef _RELOCATE_IO_H
#define _RELOCATE_IO_H
/********************************************************************/
/*
* Compiler specific code relocation section
*/
#ifdef __DCC__
#pragma section CODE ".code_relocation"
#pragma section CONST ".code_relocation"
#endif
void
relocate_putchar (char);
char
relocate_getchar (void);
int
relocate_getchar_present (void);
/*
* Return to standard sections
*/
#ifdef __DCC__
#pragma section CODE
#pragma section CONST
#endif
/********************************************************************/
#endif /* _RELOCATE_IO_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -