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/memset.c | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'firmware/common/memset.c') diff --git a/firmware/common/memset.c b/firmware/common/memset.c index c370191cda..6c4a66bf13 100644 --- a/firmware/common/memset.c +++ b/firmware/common/memset.c @@ -1,28 +1,28 @@ /* FUNCTION - <>---set an area of memory + <>---set an area of memory INDEX - memset + memset ANSI_SYNOPSIS - #include - void *memset(const void *<[dst]>, int <[c]>, size_t <[length]>); + #include + void *memset(const void *<[dst]>, int <[c]>, size_t <[length]>); TRAD_SYNOPSIS - #include - void *memset(<[dst]>, <[c]>, <[length]>) - void *<[dst]>; - int <[c]>; - size_t <[length]>; + #include + void *memset(<[dst]>, <[c]>, <[length]>) + void *<[dst]>; + int <[c]>; + size_t <[length]>; DESCRIPTION - This function converts the argument <[c]> into an unsigned - char and fills the first <[length]> characters of the array - pointed to by <[dst]> to the value. + This function converts the argument <[c]> into an unsigned + char and fills the first <[length]> characters of the array + pointed to by <[dst]> to the value. RETURNS - <> returns the value of <[m]>. + <> returns the value of <[m]>. PORTABILITY <> is ANSI C. @@ -30,7 +30,7 @@ PORTABILITY <> requires no supporting OS subroutines. QUICKREF - memset ansi pure + memset ansi pure */ #include @@ -41,9 +41,9 @@ QUICKREF _PTR _DEFUN (memset, (m, c, n), - _PTR m _AND - int c _AND - size_t n) + _PTR m _AND + int c _AND + size_t n) { #if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) char *s = (char *) m; @@ -78,7 +78,7 @@ _DEFUN (memset, (m, c, n), { buffer = 0; for (i = 0; i < LBLOCKSIZE; i++) - buffer = (buffer << 8) | c; + buffer = (buffer << 8) | c; } while (n >= LBLOCKSIZE*4) -- cgit v1.2.3