icclbutl.h
来自「嵌入式点菜系嵌入式点菜系统源码供参考c51c51统源码供参考嵌入式点菜系统源码供」· C头文件 代码 · 共 56 行
H
56 行
/* - 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 + =
减小字号Ctrl + -
显示快捷键?