~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to strings/ctype.c

Replacing all bzero() calls with memset() calls and removing the bzero.c file.
Also removing check for bzero from the 'configure.ac' autoconf file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
184
184
  struct my_cs_file_section_st *s= cs_file_sec(attr,len);
185
185
  
186
186
  if ( s && (s->state == _CS_CHARSET))
187
 
    bzero(&i->cs,sizeof(i->cs));
 
187
    memset(&i->cs, 0, sizeof(i->cs));
188
188
  
189
189
  if (s && (s->state == _CS_COLLATION))
190
190
    i->tailoring_length= 0;