~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/list.c

  • Committer: Stewart Smith
  • Date: 2008-09-15 07:13:59 UTC
  • mfrom: (383.1.21 drizzle)
  • mto: This revision was merged to the branch mainline in revision 408.
  • Revision ID: stewart@flamingspork.com-20080915071359-f8bznznyaiqrtqxa
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
 
69
69
LIST *list_cons(void *data, LIST *list)
70
70
{
71
 
  LIST *new_charset=(LIST*) my_malloc(sizeof(LIST),MYF(MY_FAE));
 
71
  LIST * const new_charset=(LIST*) my_malloc(sizeof(LIST),MYF(MY_FAE));
72
72
  if (!new_charset)
73
 
    return 0;
 
73
    return NULL;
74
74
  new_charset->data=data;
75
75
  return list_add(list,new_charset);
76
76
}
91
91
  return last;
92
92
}
93
93
 
94
 
uint list_length(LIST *list)
95
 
{
96
 
  uint count;
97
 
  for (count=0 ; list ; list=list->next, count++) ;
98
 
  return count;
99
 
}
100
 
 
101
 
 
102
94
int list_walk(LIST *list, list_walk_action action, uchar* argument)
103
95
{
104
 
  int error=0;
105
96
  while (list)
106
97
  {
 
98
    int error;
107
99
    if ((error = (*action)(list->data,argument)))
108
100
      return error;
109
101
    list=list_rest(list);