~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to strings/ctype-bin.c

  • Committer: Monty Taylor
  • Date: 2008-07-05 15:57:24 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: monty@inaugust.com-20080705155724-xytfq0uq6wysr8gz
Various static declares.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
}
87
87
 
88
88
 
89
 
size_t my_lengthsp_binary(CHARSET_INFO *cs __attribute__((unused)),
90
 
                          const char *ptr __attribute__((unused)),
91
 
                          size_t length)
 
89
static size_t my_lengthsp_binary(CHARSET_INFO *cs __attribute__((unused)),
 
90
                                 const char *ptr __attribute__((unused)),
 
91
                                 size_t length)
92
92
{
93
93
  return length;
94
94
}
272
272
}
273
273
 
274
274
 
275
 
void my_hash_sort_8bit_bin(CHARSET_INFO *cs __attribute__((unused)),
276
 
                           const uchar *key, size_t len,
277
 
                           ulong *nr1, ulong *nr2)
 
275
static void my_hash_sort_8bit_bin(CHARSET_INFO *cs __attribute__((unused)),
 
276
                                  const uchar *key, size_t len,
 
277
                                  ulong *nr1, ulong *nr2)
278
278
{
279
279
  const uchar *pos = key;
280
280
  
293
293
}
294
294
 
295
295
 
296
 
void my_hash_sort_bin(CHARSET_INFO *cs __attribute__((unused)),
297
 
                      const uchar *key, size_t len,ulong *nr1, ulong *nr2)
 
296
static void my_hash_sort_bin(CHARSET_INFO *cs __attribute__((unused)),
 
297
                             const uchar *key, size_t len,
 
298
                             ulong *nr1, ulong *nr2)
298
299
{
299
300
  const uchar *pos = key;
300
301