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

📄 strncmp.c

📁 一套接口
💻 C
字号:
#include <string.h>/*lint -e613strncmp is defined here because some vendors don't implementit, strcmp, or memcmp correctly; they must treat the bytesas unsigned chars.*/int strncmp(const char *s1, const char *s2, size_t n) {	for ( ; n-- > 0; s1++, s2++)		if (*s1 != *s2)			return (unsigned char)*s1 - (unsigned char)*s2;		else if (*s1 == 0)			return 0;	return 0;}

⌨️ 快捷键说明

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