From 0b7dcd69c801a7439de5bfc53ae4005ec3846634 Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Mon, 22 Feb 2010 21:24:09 +0000 Subject: Remove tabs in firmware path (taking into account the original spacing). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24864 a1c6a512-1295-4272-9138-f99709370657 --- firmware/common/strcmp.c | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'firmware/common/strcmp.c') diff --git a/firmware/common/strcmp.c b/firmware/common/strcmp.c index 81d65272ec..bbbf4b174a 100644 --- a/firmware/common/strcmp.c +++ b/firmware/common/strcmp.c @@ -1,30 +1,30 @@ /* FUNCTION - <>---character string compare - + <>---character string compare + INDEX - strcmp + strcmp ANSI_SYNOPSIS - #include - int strcmp(const char *<[a]>, const char *<[b]>); + #include + int strcmp(const char *<[a]>, const char *<[b]>); TRAD_SYNOPSIS - #include - int strcmp(<[a]>, <[b]>) - char *<[a]>; - char *<[b]>; + #include + int strcmp(<[a]>, <[b]>) + char *<[a]>; + char *<[b]>; DESCRIPTION - <> compares the string at <[a]> to - the string at <[b]>. + <> compares the string at <[a]> to + the string at <[b]>. RETURNS - If <<*<[a]>>> sorts lexicographically after <<*<[b]>>>, - <> returns a number greater than zero. If the two - strings match, <> returns zero. If <<*<[a]>>> - sorts lexicographically before <<*<[b]>>>, <> returns a - number less than zero. + If <<*<[a]>>> sorts lexicographically after <<*<[b]>>>, + <> returns a number greater than zero. If the two + strings match, <> returns zero. If <<*<[a]>>> + sorts lexicographically before <<*<[b]>>>, <> returns a + number less than zero. PORTABILITY <> is ANSI C. @@ -32,7 +32,7 @@ PORTABILITY <> requires no supporting OS subroutines. QUICKREF - strcmp ansi pure + strcmp ansi pure */ #include @@ -59,8 +59,8 @@ QUICKREF int _DEFUN (strcmp, (s1, s2), - _CONST char *s1 _AND - _CONST char *s2) + _CONST char *s1 _AND + _CONST char *s2) { #if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) while (*s1 != '\0' && *s1 == *s2) @@ -83,9 +83,9 @@ _DEFUN (strcmp, (s1, s2), while (*a1 == *a2) { /* To get here, *a1 == *a2, thus if we find a null in *a1, - then the strings must be equal, so return zero. */ + then the strings must be equal, so return zero. */ if (DETECTNULL (*a1)) - return 0; + return 0; a1++; a2++; -- cgit v1.2.3