~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_radix.c

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

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, uint number_of_elements, size_t size_of_element, unsigned char **buffer)
 
28
void radixsort_for_str_ptr(unsigned char **base, uint32_t number_of_elements, size_t size_of_element, unsigned char **buffer)
29
29
{
30
30
  unsigned char **end,**ptr,**buffer_ptr;
31
31
  uint32_t *count_ptr,*count_end,count[256];