bcmp.c
来自「基于4个mips核的noc设计」· C语言 代码 · 共 50 行
C
50 行
/* bcmp This function is in the public domain. *//*NAME bcmp -- compare two memory regionsSYNOPSIS int bcmp (char *from, char *to, int count)DESCRIPTION Compare two memory regions and return zero if they are identical, non-zero otherwise. If count is zero, return zero.NOTES No guarantee is made about the non-zero returned value. In particular, the results may be signficantly different than strcmp(), where the return value is guaranteed to be less than, equal to, or greater than zero, according to lexicographical sorting of the compared regions.BUGS*/intbcmp (from, to, count) char *from, *to; int count;{ int rtnval = 0; while (count-- > 0) { if (*from++ != *to++) { rtnval = 1; break; } } return (rtnval);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?