📄 snprintf.h
字号:
/* $Id: snprintf.h,v 1.3 2003/08/03 14:36:09 abo Exp $ *//* Some platforms don't have one or both of these functions. * MSVC has _snprintf and _vsnprintf functions instead. * * XXX: put this into a "common.h" for all platform conditionals and split * snprintf.c into two seperate autoconf replacement functions. */#ifndef HAVE_SNPRINTF# ifdef HAVE__SNPRINTF# define snprintf _snprintf# elseint snprintf (char *str, size_t count, const char *fmt, ...);# endif#endif#ifndef HAVE_VSNPRINTF# ifdef HAVE__VSNPRINTF# define vsnprintf _vsnprintf# elseint vsnprintf (char *str, size_t count, const char *fmt, va_list arg);# endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -