common: indent, not logic change
This commit is contained in:
parent
abf5549524
commit
ff8275da58
@ -26,11 +26,11 @@
|
|||||||
/* list */
|
/* list */
|
||||||
struct list
|
struct list
|
||||||
{
|
{
|
||||||
tbus* items;
|
tintptr* items;
|
||||||
int count;
|
int count;
|
||||||
int alloc_size;
|
int alloc_size;
|
||||||
int grow_by;
|
int grow_by;
|
||||||
int auto_free;
|
int auto_free;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct list* APP_CC
|
struct list* APP_CC
|
||||||
@ -38,17 +38,17 @@ list_create(void);
|
|||||||
void APP_CC
|
void APP_CC
|
||||||
list_delete(struct list* self);
|
list_delete(struct list* self);
|
||||||
void APP_CC
|
void APP_CC
|
||||||
list_add_item(struct list* self, tbus item);
|
list_add_item(struct list* self, tintptr item);
|
||||||
tbus APP_CC
|
tintptr APP_CC
|
||||||
list_get_item(struct list* self, int index);
|
list_get_item(struct list* self, int index);
|
||||||
void APP_CC
|
void APP_CC
|
||||||
list_clear(struct list* self);
|
list_clear(struct list* self);
|
||||||
int APP_CC
|
int APP_CC
|
||||||
list_index_of(struct list* self, tbus item);
|
list_index_of(struct list* self, tintptr item);
|
||||||
void APP_CC
|
void APP_CC
|
||||||
list_remove_item(struct list* self, int index);
|
list_remove_item(struct list* self, int index);
|
||||||
void APP_CC
|
void APP_CC
|
||||||
list_insert_item(struct list* self, int index, tbus item);
|
list_insert_item(struct list* self, int index, tintptr item);
|
||||||
void APP_CC
|
void APP_CC
|
||||||
list_append_list_strdup(struct list* self, struct list* dest, int start_index);
|
list_append_list_strdup(struct list* self, struct list* dest, int start_index);
|
||||||
void APP_CC
|
void APP_CC
|
||||||
|
Loading…
Reference in New Issue
Block a user