~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_radix.c

  • Committer: Brian Aker
  • Date: 2008-09-04 19:31:00 UTC
  • Revision ID: brian@tangent.org-20080904193100-l849hgghfy4urj43
Changing default character set from this point on.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
        /* Radixsort */
27
27
 
28
 
void radixsort_for_str_ptr(unsigned char **base, uint32_t number_of_elements, size_t size_of_element, unsigned char **buffer)
 
28
void radixsort_for_str_ptr(uchar **base, uint number_of_elements, size_t size_of_element, uchar **buffer)
29
29
{
30
 
  unsigned char **end,**ptr,**buffer_ptr;
 
30
  uchar **end,**ptr,**buffer_ptr;
31
31
  uint32_t *count_ptr,*count_end,count[256];
32
32
  int pass;
33
33