~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/base64.c

  • Committer: Monty Taylor
  • Date: 2008-09-13 20:24:20 UTC
  • mfrom: (383.1.35 drizzle)
  • Revision ID: monty@inaugust.com-20080913202420-lkj76ewbabl8ljvp
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
 
109
109
#define SKIP_SPACE(src, i, size)                                \
110
110
{                                                               \
111
 
  while (i < size && my_isspace(&my_charset_latin1, * src))     \
 
111
  while (i < size && my_isspace(&my_charset_utf8_general_ci, * src))     \
112
112
  {                                                             \
113
113
    i++;                                                        \
114
114
    src++;                                                      \