summaryrefslogtreecommitdiffstats
path: root/common/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/list.h')
-rw-r--r--common/list.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/common/list.h b/common/list.h
index 46e82cb3..68a52b48 100644
--- a/common/list.h
+++ b/common/list.h
@@ -31,21 +31,21 @@ struct list
int auto_free;
};
-struct list*
+struct list* APP_CC
list_create(void);
-void
+void APP_CC
list_delete(struct list* self);
-void
+void APP_CC
list_add_item(struct list* self, long item);
-long
+long APP_CC
list_get_item(struct list* self, int index);
-void
+void APP_CC
list_clear(struct list* self);
-int
+int APP_CC
list_index_of(struct list* self, long item);
-void
+void APP_CC
list_remove_item(struct list* self, int index);
-void
+void APP_CC
list_insert_item(struct list* self, int index, long item);
#endif