~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/bmove_upp.c

Giant merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
    "src-len" to the destination "dst-len" counting downwards.
23
23
*/
24
24
 
25
 
#include <my_global.h>
26
25
#include "m_string.h"
27
26
 
28
27
#if defined(MC68000) && defined(DS90)
41
40
}
42
41
#else
43
42
 
44
 
void bmove_upp(register uchar *dst, register const uchar *src,
 
43
void bmove_upp(register unsigned char *dst, register const unsigned char *src,
45
44
               register size_t len)
46
45
{
47
46
  while (len-- != 0) *--dst = *--src;