1 /* -*- linux-c -*- ------------------------------------------------------- *
3 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Copyright 2007 rPath, Inc. - All Rights Reserved
6 * This file is part of the Linux kernel, and is made available under
7 * the terms of the GNU General Public License version 2.
9 * ----------------------------------------------------------------------- */
12 * Very basic string functions
15 #include <linux/types.h>
18 int memcmp(const void *s1, const void *s2, size_t len)
21 asm("repe; cmpsb; setnz %0"
22 : "=qm" (diff), "+D" (s1), "+S" (s2), "+c" (len));
26 int strcmp(const char *str1, const char *str2)
28 const unsigned char *s1 = (const unsigned char *)str1;
29 const unsigned char *s2 = (const unsigned char *)str2;
42 int strncmp(const char *cs, const char *ct, size_t count)
50 return c1 < c2 ? -1 : 1;
58 size_t strnlen(const char *s, size_t maxlen)
61 while (*es && maxlen) {
69 unsigned int atou(const char *s)
73 i = i * 10 + (*s++ - '0');
77 /* Works only for digits and letters, but small and fast */
78 #define TOLOWER(x) ((x) | 0x20)
80 static unsigned int simple_guess_base(const char *cp)
83 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2]))
93 * simple_strtoull - convert a string to an unsigned long long
94 * @cp: The start of the string
95 * @endp: A pointer to the end of the parsed string will be placed here
96 * @base: The number base to use
99 unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base)
101 unsigned long long result = 0;
104 base = simple_guess_base(cp);
106 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x')
109 while (isxdigit(*cp)) {
112 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10;
115 result = result * base + value;
125 * strlen - Find the length of a string
126 * @s: The string to be sized
128 size_t strlen(const char *s)
132 for (sc = s; *sc != '\0'; ++sc)
138 * strstr - Find the first substring in a %NUL terminated string
139 * @s1: The string to be searched
140 * @s2: The string to search for
142 char *strstr(const char *s1, const char *s2)
152 if (!memcmp(s1, s2, l2))