#ifndef __HAVE_ARCH_STRNICMP/*** strnicmp - Case insensitive, length-limited string comparison* @s1: One string* @s2: The other string* @len: the maximum number of characters to compare*/int strnicmp(const char *s1, const char *s2, size_t len){/* Yes, Virginia, it had better be unsigned */unsigned c Read More
posted @ 2011-03-21 18:57 BloodAndBone Views(1436) Comments(1) Diggs(1) Edit