sprintf.h

来自「基于4个mips核的noc设计」· C头文件 代码 · 共 19 行

H
19
字号
/**************************************************************** *  TU Eindhoven, Eindhoven, The Netherlands, November 2003 *  Contents    :   svprintf() is equivalent to vprintf(), but *                  with output written to the buffer argument *                  instead of stdout. *  Author      :   Mathijs Visser, November 2003 *                  Based on printf.c included in the distribution *                  of the lcc compiler. ****************************************************************/#ifndef SPRINTF_H#define SPRINTF_H#include "stdarg_mm.h"int svprintf (char *buffer, char *format, va_list arg_list);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?