① 首先添加头文件#include
② linux下才有bzero(),windows下可以用memset()代替
#include
// 将s中的前n个字节用ch替换并且返回s,
void *memset(void *s,int ch,size_t n)
memset清空数组:
memset(buffer, 0, sizeof(buffer)) // 这个函数在socket很常用。
char a[100];
memset(a, '/0', sizeof(a)); // 初始化数组。
memset清空结构体:
// 在一段内存块中填充某一个给定的值,常用于较大的对结构体和数组的清零操作。
struct sample_struct
{
char csName[16];
int iSeq;
int iType;
};
memset(&stTest, 0, sizeof(struct sample_struct));
// 如果是数组:
struct sample_struct TEST[10];
memset(TEST, 0, sizeof(struct sample_struct)*10);
添加头文件 #include
函数原型:
int read(int handle,void *buf,int len);
int handle:要读取文件
void *buf :要将读取的内容保存到缓冲区
int len :读取文件的长度
方案一:stricmp替换strcasecmp ;strnicmp替换strncasecmp,即可。
之后貌似还会报错:
error C4996: 'strnicmp': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strnicmp. See online help for details. D:\CAFFE_ROOT\src\caffe\common.cpp
解决办法:
这个问题在VS 2012之前的版本中是不会当做错误的,只是提出一个警告。为了避免报错,可以使用以下两个宏定义来屏蔽掉这种 错误。
在common.cpp文件的属性->c/c++->预处理器->预处理器定义 中添加:
_CRT_SECURE_NO_DEPRECATE
_CRT_NONSTDC_NO_DEPRECATE
方案二:用VC SDK中的函数来代替,在main函数外面步添加一下代码即可:
#ifdef _MSC_VER
#define strcasecmp stricmp
#define strncasecmp strnicmp
#endif
方案三:自己添加该函数的声明和定义
第一步:.h文件添加:
#ifdef _MSC_VER
int strcasecmp(char *s1, char *s2);
int strncasecmp(char *s1, char *s2, register int n);
#endif
第二步:.c文件中添加
#ifdef _MSC_VER
int strcasecmp(char *s1, char *s2)
{
while (toupper((unsigned char)*s1) == toupper((unsigned char)*s2++))
if (*s1++ == '') return 0;
return(toupper((unsigned char)*s1) - toupper((unsigned char)*--s2));
}
int strncasecmp(char *s1, char *s2, register int n)
{
while (--n >= 0 && toupper((unsigned char)*s1) == toupper((unsigned char)*s2++))
if (*s1++ == '') return 0;
return(n < 0 ? 0 : toupper((unsigned char)*s1) - toupper((unsigned char)*--s2));
}
#endif