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/memmove.c | 60 +++++++++++++++++++++++------------------------ 1 file changed, 30 insertions(+), 30 deletions(-) (limited to 'firmware/common/memmove.c') diff --git a/firmware/common/memmove.c b/firmware/common/memmove.c index 599cbc9c01..5f423964bb 100644 --- a/firmware/common/memmove.c +++ b/firmware/common/memmove.c @@ -1,30 +1,30 @@ /* FUNCTION - <>---move possibly overlapping memory + <>---move possibly overlapping memory INDEX - memmove + memmove ANSI_SYNOPSIS - #include - void *memmove(void *<[dst]>, const void *<[src]>, size_t <[length]>); + #include + void *memmove(void *<[dst]>, const void *<[src]>, size_t <[length]>); TRAD_SYNOPSIS - #include - void *memmove(<[dst]>, <[src]>, <[length]>) - void *<[dst]>; - void *<[src]>; - size_t <[length]>; + #include + void *memmove(<[dst]>, <[src]>, <[length]>) + void *<[dst]>; + void *<[src]>; + size_t <[length]>; DESCRIPTION - This function moves <[length]> characters from the block of - memory starting at <<*<[src]>>> to the memory starting at - <<*<[dst]>>>. <> reproduces the characters correctly - at <<*<[dst]>>> even if the two areas overlap. + This function moves <[length]> characters from the block of + memory starting at <<*<[src]>>> to the memory starting at + <<*<[dst]>>>. <> reproduces the characters correctly + at <<*<[dst]>>> even if the two areas overlap. RETURNS - The function returns <[dst]> as passed. + The function returns <[dst]> as passed. PORTABILITY <> is ANSI C. @@ -32,7 +32,7 @@ PORTABILITY <> requires no supporting OS subroutines. QUICKREF - memmove ansi pure + memmove ansi pure */ #include "config.h" @@ -54,15 +54,15 @@ QUICKREF _PTR _DEFUN (memmove, (dst_void, src_void, length), - _PTR dst_void _AND - _CONST _PTR src_void _AND - size_t length) ICODE_ATTR; + _PTR dst_void _AND + _CONST _PTR src_void _AND + size_t length) ICODE_ATTR; _PTR _DEFUN (memmove, (dst_void, src_void, length), - _PTR dst_void _AND - _CONST _PTR src_void _AND - size_t length) + _PTR dst_void _AND + _CONST _PTR src_void _AND + size_t length) { #if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) char *dst = dst_void; @@ -74,16 +74,16 @@ _DEFUN (memmove, (dst_void, src_void, length), src += length; dst += length; while (length--) - { - *--dst = *--src; - } + { + *--dst = *--src; + } } else { while (length--) - { - *dst++ = *src++; - } + { + *dst++ = *src++; + } } return dst_void; @@ -100,9 +100,9 @@ _DEFUN (memmove, (dst_void, src_void, length), src += len; dst += len; while (len--) - { - *--dst = *--src; - } + { + *--dst = *--src; + } } else { -- cgit v1.2.3