snprintf.h
来自「rsync的核心代码库。主要作用是比较二进制文件」· C头文件 代码 · 共 23 行
H
23 行
/* $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 + =
减小字号Ctrl + -
显示快捷键?