📄 icclbutl.h
字号:
/* - ICCLBUTL.H -
Low-level declarations for non-ANSI functions
used by the C library.
Version: 3.20 [ICLM]
*/
#ifndef _ICCLBUTL_INCLUDED
#define _ICCLBUTL_INCLUDED
#include "stdarg.h"
/*-----------------------------------------*/
/* Formatters used by "scanf" and "sscanf" */
/*-----------------------------------------*/
#if __TID__ & 0x8000
#pragma function=intrinsic(0)
#endif
int _formatted_read (const char **line, /* Full ANSI */
const char **format,
va_list ap);
int _medium_read (const char **, /* Without floating point */
const char **,
va_list);
/*-------------------------------------------*/
/* Formatters used by "printf" and "sprintf" */
/*-------------------------------------------*/
int _formatted_write (const char *format, /* Full ANSI */
void outputf(char, void *),
void *sp,
va_list ap);
int _medium_write (const char *format, /* Without floating point */
void outputf(char, void *),
void *sp,
va_list ap);
int _small_write (const char *format, /* Very reduced version */
void outputf(char, void *),
void *sp,
va_list ap);
#if __TID__ & 0x8000
#pragma function=default
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -