diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
commit | 5796aa164d79b2ffaf2839b281d490be6a72d1d8 (patch) | |
tree | 4031a623426b19bf03b2c61cd73a504e218fb1fb /Source/charon/utils/linked_list.c | |
parent | 95c61cb956505cdb0a91c8c8cd134dda3aac744d (diff) | |
download | strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.bz2 strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.xz |
- typedefs changed
Diffstat (limited to 'Source/charon/utils/linked_list.c')
-rw-r--r-- | Source/charon/utils/linked_list.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Source/charon/utils/linked_list.c b/Source/charon/utils/linked_list.c index 42dcf568d..83e037053 100644 --- a/Source/charon/utils/linked_list.c +++ b/Source/charon/utils/linked_list.c @@ -27,15 +27,14 @@ #include <utils/allocator.h> -typedef struct linked_list_element_s linked_list_element_t; - +typedef struct linked_list_element_t linked_list_element_t; /** * @brief Element of the linked_list. * * This element holds a pointer to the value of the list item itself. */ -struct linked_list_element_s{ +struct linked_list_element_t { /** * value of a list item */ @@ -106,9 +105,9 @@ linked_list_element_t *linked_list_element_create(void *value) * Private variables and functions of linked list * */ -typedef struct private_linked_list_s private_linked_list_t; +typedef struct private_linked_list_t private_linked_list_t; -struct private_linked_list_s{ +struct private_linked_list_t { /** * Public part of linked list */ @@ -136,9 +135,9 @@ struct private_linked_list_s{ * Private variables and functions of linked list iterator * */ -typedef struct private_linked_list_iterator_s private_linked_list_iterator_t; +typedef struct private_linked_list_iterator_t private_linked_list_iterator_t; -struct private_linked_list_iterator_s{ +struct private_linked_list_iterator_t { /** * Public part of linked list iterator */ |