Connecting Tech Pros Worldwide Help | Site Map

memcmp() and strcmp()

blueblueblue2005
Guest
 
Posts: n/a
#1: Jul 23 '05
hi, I am reading the description of memcmp and strcmp, it seems there
is no big difference between these two functions. except that memcmp
takes void pointer parameters. so why string.h has these two functions
doing the same thing?

Stephen Howe
Guest
 
Posts: n/a
#2: Jul 23 '05

re: memcmp() and strcmp()


> hi, I am reading the description of memcmp and strcmp, it seems there[color=blue]
> is no big difference between these two functions. except that memcmp
> takes void pointer parameters. so why string.h has these two functions
> doing the same thing?[/color]

There is a big difference.
strcmp() compares characters up until it sees the first '\0' in either
string.
As soon as character difference is found or '\0' is found it returns.

memcmp() does not look for '\0'. It looks for the first difference
considering the size specified.

Stephen Howe


SnaiL
Guest
 
Posts: n/a
#3: Jul 23 '05

re: memcmp() and strcmp()


By the way, not "string.h" but "cstring" header. And you need to know
that it is C, but not C plus plus. std::basic_string<T> is used in C++.

blueblueblue2005
Guest
 
Posts: n/a
#4: Jul 23 '05

re: memcmp() and strcmp()


yeah, this is another I am confused, I found a c++ website, under
standard library, they include string.h as c standard library, also
says that cstring is another name for string.h

the website I am looking at is cplusplus.com

Jack Klein
Guest
 
Posts: n/a
#5: Jul 23 '05

re: memcmp() and strcmp()


On 3 Jul 2005 12:37:42 -0700, "SnaiL" <snail@btobits.com> wrote in
comp.lang.c++:
[color=blue]
> By the way, not "string.h" but "cstring" header. And you need to know
> that it is C, but not C plus plus. std::basic_string<T> is used in C++.[/color]

Both memcmp() and strcmp() are part of the standard C++ library and
must be available on every conforming hosted C++ implementation.

Both <string.h> and <cstring> are allowed as headers to prototype
these two functions. <string.h> is deprecated, but unlikely to be
actually removed in the real world.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++
http://www.contrib.andrew.cmu.edu/~a...FAQ-acllc.html
Closed Thread