Posts Tagged ‘strcmp’

curl_strequal, curl_strnequal – case insensitive string comparisons
USAGE
#include <curl/curl.h>

int curl_strequal(char *str1, char *str2);

int curl_strenqual(char *str1, char *str2, size_t len);

DESCRIPTION
The curl_strequal() function compares the two strings [...]

Thursday, August 27th, 2009 at 02:19 | Comments Off
Categories: c

curl_strequal, curl_strnequal – case insensitive string comparisons
USAGE
#include <curl/curl.h>

int curl_strequal(char *str1, char *str2);

int curl_strenqual(char *str1, char *str2, size_t len);

DESCRIPTION
The curl_strequal() function compares the two strings [...]

Thursday, August 27th, 2009 at 02:19 | Comments Off
Categories: c

bcmp – compare byte sequences
USAGE
#include <strings.h>

int bcmp(const void *s1, const void *s2, size_t n);

DESCRIPTION
The bcmp() function compares the two byte sequences s1 and s2 of length
n each. [...]

Wednesday, August 26th, 2009 at 02:43 | Comments Off
Categories: B
TOP