diff options
| author | Jay Sorg <jay.sorg@gmail.com> | 2014-07-25 21:33:05 -0700 |
|---|---|---|
| committer | Jay Sorg <jay.sorg@gmail.com> | 2014-07-25 21:33:05 -0700 |
| commit | ff8275da582a1235d591481e7f10cbcb6115c994 (patch) | |
| tree | 4a16905717fec2535013b7bd9198e15ad2f755ef | |
| parent | abf5549524bfabf212dc1d45bc5939b26cd4887d (diff) | |
| download | xrdp-proprietary-ff8275da582a1235d591481e7f10cbcb6115c994.tar.gz xrdp-proprietary-ff8275da582a1235d591481e7f10cbcb6115c994.zip | |
common: indent, not logic change
| -rw-r--r-- | common/list.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/common/list.h b/common/list.h index 23bc5092..cdc545a0 100644 --- a/common/list.h +++ b/common/list.h @@ -26,11 +26,11 @@ /* list */ struct list { - tbus* items; - int count; - int alloc_size; - int grow_by; - int auto_free; + tintptr* items; + int count; + int alloc_size; + int grow_by; + int auto_free; }; struct list* APP_CC @@ -38,17 +38,17 @@ list_create(void); void APP_CC list_delete(struct list* self); void APP_CC -list_add_item(struct list* self, tbus item); -tbus APP_CC +list_add_item(struct list* self, tintptr item); +tintptr APP_CC list_get_item(struct list* self, int index); void APP_CC list_clear(struct list* self); int APP_CC -list_index_of(struct list* self, tbus item); +list_index_of(struct list* self, tintptr item); void APP_CC list_remove_item(struct list* self, int index); 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 list_append_list_strdup(struct list* self, struct list* dest, int start_index); void APP_CC |
