ui/common/types.c

changeset 116
480354705c2f
parent 39
4e66271541e8
child 140
c03c338a7dcf
equal deleted inserted replaced
115:102fc0b8fe3e 116:480354705c2f
80 } 80 }
81 } 81 }
82 82
83 /* --------------------------- UiList --------------------------- */ 83 /* --------------------------- UiList --------------------------- */
84 84
85 UiList* ui_list_new() { 85 UiList* ui_list_new(void) {
86 UiList *list = malloc(sizeof(UiList)); 86 UiList *list = malloc(sizeof(UiList));
87 list->first = ui_list_first; 87 list->first = ui_list_first;
88 list->next = ui_list_next; 88 list->next = ui_list_next;
89 list->get = ui_list_get; 89 list->get = ui_list_get;
90 list->count = ui_list_count; 90 list->count = ui_list_count;

mercurial