1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-23 06:25:25 +00:00

Fix: Corrected possition of comment

This commit is contained in:
Philipp Schafft 2018-11-08 13:31:20 +00:00
parent f9377086a4
commit 7b73af07a9

View File

@ -35,16 +35,16 @@ typedef struct igloo_list_iterator_tag igloo_list_iterator_storage_t;
igloo_RO_FORWARD_TYPE(igloo_list_t);
/* ---[ PRIVATE ]--- */
/*
* Those types are defined here as they must be known to the compiler.
* Nobody should ever try to access them directly.
*/
struct igloo_list_iterator_tag {
igloo_list_t *list;
size_t idx;
};
/* ---[ END PRIVATE ]--- */
/*
* Those types are defined here as they must be known to the compiler.
* Nobody should ever try to access them directly.
*/
int igloo_list_clear(igloo_list_t *list);
void igloo_list_preallocate(igloo_list_t *list, size_t request);
int igloo_list_set_type__real(igloo_list_t *list, const igloo_ro_type_t *type);