~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/bchange.c

  • Committer: Monty Taylor
  • Date: 2008-10-27 23:19:48 UTC
  • mto: (520.4.12 merge-innodb-plugin)
  • mto: This revision was merged to the branch mainline in revision 563.
  • Revision ID: monty@inaugust.com-20081027231948-3kl6ss04plbakqcr
Split some more things out of common_includes.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
  if (old_length < new_length)
34
34
    bmove_upp(dst+rest+new_length,dst+tot_length,rest);
35
35
  else
36
 
    memmove(dst+new_length, dst+old_length, rest);
 
36
    memcpy(dst+new_length, dst+old_length, rest);
37
37
  memcpy(dst,src,new_length);
38
38
}