⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 missing.h

📁 P2P NAP的C实现 P2P在网络应用中越来越流行
💻 H
字号:
/* $Id: missing.h,v 1.2 2002/12/09 05:28:09 selinger Exp $ *//* replacements for missing library functions *//* libc documentation: "On architectures where a simple assignment is   invalid, hopefully `__va_copy' _will_ be available" */#ifndef va_copy# ifdef __va_copy#  define va_copy(dest, src) __va_copy(dest, src)# else#  define va_copy(dest, src) ((dest) = (src))# endif /* __va_copy */#endif /* undef va_copy */#ifndef HAVE_HSTRERRORextern const char *hstrerror(int err);#endif#ifndef HAVE_STRCASESTR  char *strcasestr(const char *haystack, const char *needle);#endif#ifndef HAVE_STRSEP  char *strsep(char **stringp, const char *delim);#endif#ifndef HAVE_VASPRINTF  int vasprintf(char **str, const char *fmt, va_list args);#endif

⌨️ 快捷键说明

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