1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 04:52:59 +01:00

core/list: uncrustify

This commit is contained in:
Victor Arino 2016-12-14 13:16:24 +01:00
parent be146741c9
commit bba8cf4c03

View File

@ -7,7 +7,7 @@
* directory for more details.
*/
/**
/**
* @addtogroup core_util
* @{
*
@ -50,7 +50,8 @@ typedef struct list_node {
* @param[in] node list node before new entry
* @param[in] new_node list node to insert
*/
static inline void list_add(list_node_t *node, list_node_t *new_node) {
static inline void list_add(list_node_t *node, list_node_t *new_node)
{
new_node->next = node->next;
node->next = new_node;
}
@ -63,8 +64,10 @@ static inline void list_add(list_node_t *node, list_node_t *new_node) {
*
* @return removed old list head, or NULL if empty
*/
static inline list_node_t* list_remove_head(list_node_t *list) {
list_node_t* head = list->next;
static inline list_node_t *list_remove_head(list_node_t *list)
{
list_node_t *head = list->next;
if (head) {
list->next = head->next;
}