摘要: 原型:extern int bcmp(const void *s1, const void *s2, int n);用法:#include <string.h>功能:比较字符串s1和s2的前n个字节是否相等说明:如果s1=s2或n=0则返回零,否则返回非零值。bcmp不检查NULL。举例:// bcmp.c#include <syslib.h>#include <st... 阅读全文
posted @ 2010-11-30 14:14 涵曦 阅读(1107) 评论(0) 推荐(0) 编辑