~hartmut-php/drizzle/codestyle

« back to all changes in this revision

Viewing changes to mystrings/ctype-uca.c

  • Committer: Monty Taylor
  • Date: 2008-08-10 16:52:18 UTC
  • mfrom: (293 drizzle)
  • mto: (312.1.3 translations)
  • mto: This revision was merged to the branch mainline in revision 295.
  • Revision ID: monty@inaugust.com-20080810165218-jlekj1n46oyx9sih
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7241
7241
static void my_hash_sort_uca(const CHARSET_INFO * const cs,
7242
7242
                             my_uca_scanner_handler *scanner_handler,
7243
7243
                             const uchar *s, size_t slen,
7244
 
                             ulong *n1, ulong *n2)
 
7244
                             uint32_t *n1, uint32_t *n2)
7245
7245
{
7246
7246
  int   s_res;
7247
7247
  my_uca_scanner scanner;
8051
8051
 
8052
8052
static void my_hash_sort_any_uca(const CHARSET_INFO * const cs,
8053
8053
                                 const uchar *s, size_t slen,
8054
 
                                 ulong *n1, ulong *n2)
 
8054
                                 uint32_t *n1, uint32_t *n2)
8055
8055
{
8056
8056
  my_hash_sort_uca(cs, &my_any_uca_scanner_handler, s, slen, n1, n2); 
8057
8057
}