~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/bmove_upp.c

  • Committer: Monty Taylor
  • Date: 2008-07-31 19:56:51 UTC
  • mto: (202.3.5 gettextize)
  • mto: This revision was merged to the branch mainline in revision 243.
  • Revision ID: monty@inaugust.com-20080731195651-8rolsypajn99uc2p
Some cleanups/decoupling in mystring.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
}
41
41
#else
42
42
 
43
 
void bmove_upp(register uchar *dst, register const uchar *src,
 
43
void bmove_upp(register unsigned char *dst, register const unsigned char *src,
44
44
               register size_t len)
45
45
{
46
46
  while (len-- != 0) *--dst = *--src;