~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/ctype-ucs2.c

  • Committer: Patrick Galbraith
  • Date: 2008-08-22 20:19:13 UTC
  • mfrom: (365.1.2 drizzle)
  • Revision ID: patg@radha.local-20080822201913-njjzdfrlihco6ap1
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
146
146
  overflow= 0;
147
147
  res= 0;
148
148
  save= s;
149
 
  cutoff= ((uint32_t)~0L) / (uint32_t) base;
150
 
  cutlim= (uint) (((uint32_t)~0L) % (uint32_t) base);
 
149
  cutoff= (UINT32_MAX) / (uint32_t) base;
 
150
  cutlim= (uint) ((UINT32_MAX) % (uint32_t) base);
151
151
  
152
152
  do {
153
153
    if ((cnv= cs->cset->mb_wc(cs, &wc, s, e)) > 0)
262
262
  overflow= 0;
263
263
  res= 0;
264
264
  save= s;
265
 
  cutoff= ((uint32_t)~0L) / (uint32_t) base;
266
 
  cutlim= (uint) (((uint32_t)~0L) % (uint32_t) base);
 
265
  cutoff= (UINT32_MAX) / (uint32_t) base;
 
266
  cutlim= (uint) ((UINT32_MAX) % (uint32_t) base);
267
267
  
268
268
  do
269
269
  {