INtime SDK Help
memicmp

Compares characters in two buffers byte-by-byte (case-insensitive).

#include <string.h>

int memicmp (void *buf1, void *buf2, unsigned int count);

Parameters

dest
First buffer.
src
Second buffer.
count
Number of characters to compare.

Return Values

<0 buf1 is less than buf2.
=0 buf1 is identical to buf2
>0 buf1 is greater than buf2

Requirements

Versions Defined in Include Link to
INtime 3.0 intime/rt/include/string.h string.h clib.lib

See Also

memccpy, memchr, memcmp, memcpy, memset, strcmp, strncmp