Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
memcmp.c
Package: vxwork_src.rar [view]
Upload User: nvosite88
Upload Date: 2007-01-17
Package Size: 4983k
Code Size: 1k
Category:
VxWorks
Development Platform:
C/C++
- /* memcmp.c - memory compare file for string */
- /* Copyright 1992-1993 Wind River Systems, Inc. */
- /*
- modification history
- --------------------
- 01c,25feb93,jdi documentation cleanup for 5.1.
- 01b,20sep92,smb documentation additions
- 01a,08jul92,smb written and documented.
- */
- /*
- DESCRIPTION
- INCLUDE FILE: string.h
- SEE ALSO: American National Standard X3.159-1989
- NOMANUAL
- */
- #include "vxWorks.h"
- #include "string.h"
- /*******************************************************************************
- *
- * memcmp - compare two blocks of memory (ANSI)
- *
- * This routine compares successive elements from two arrays of `unsigned char',
- * beginning at the addresses <s1> and <s2> (both of size <n>), until it finds
- * elements that are not equal.
- *
- * INCLUDE FILES: string.h
- *
- * RETURNS:
- * If all elements are equal, zero. If elements differ and the differing
- * element from <s1> is greater than the element from <s2>, the routine
- * returns a positive number; otherwise, it returns a negative number.
- */
- int memcmp
- (
- const void * s1, /* array 1 */
- const void * s2, /* array 2 */
- size_t n /* size of memory to compare */
- )
- {
- const unsigned char *p1;
- const unsigned char *p2;
- /* size of memory is zero */
- if (n == 0)
- return (0);
- /* compare array 2 into array 1 */
- p1 = s1;
- p2 = s2;
- while (*p1++ == *p2++)
- {
- if (--n == 0)
- return (0);
- }
- return ((*--p1) - (*--p2));
- }