snprintf.h

来自「大名鼎鼎的远程登录软件putty的Symbian版源码」· C头文件 代码 · 共 29 行

H
29
字号
/** @file snprintf.h * * snprintf() and vsnprintf() for Symbian OS. See snprintf.c. * * Copyright 2003 Petteri Kangaslampi * * See license.txt for full copyright and license information.*/#ifndef __SNPRINTF_H__#define __SNPRINTF_H__#include <stdarg.h>#include <stdlib.h>#ifdef __cplusplusextern "C" {#endifint snprintf(char *str, size_t count, const char *fmt, ...);int vsnprintf(char *str, size_t count, const char *fmt, va_list arg);#ifdef __cplusplus}    #endif#endif

⌨️ 快捷键说明

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