From 9316f2063255bd4a0abd5c38d4c065969a8980bb Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 1 Apr 2020 18:10:36 +0200 Subject: Norm compliant comment format, dirty script for doxygen comments --- src/lst/ft_lstdelone.c | 2 +- src/lst/ft_lstdestroy.c | 2 +- src/lst/ft_lstiter.c | 2 +- src/lst/ft_lstlast.c | 2 +- src/lst/ft_lstmap.c | 2 +- src/lst/ft_lstnew.c | 2 +- src/lst/ft_lstpop_front.c | 2 +- src/lst/ft_lstpush_back.c | 2 +- src/lst/ft_lstpush_front.c | 2 +- src/lst/ft_lstremove_if.c | 2 +- src/lst/ft_lstreverse.c | 2 +- src/lst/ft_lstreverse_ret.c | 2 +- src/lst/ft_lstsize.c | 2 +- src/lst/ft_lstsort.c | 2 +- src/lst/ft_lstsorted_merge.c | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) (limited to 'src/lst') diff --git a/src/lst/ft_lstdelone.c b/src/lst/ft_lstdelone.c index 40e25cd..3dfbbbb 100644 --- a/src/lst/ft_lstdelone.c +++ b/src/lst/ft_lstdelone.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Delete list node ** \param del Delete function for node's data */ diff --git a/src/lst/ft_lstdestroy.c b/src/lst/ft_lstdestroy.c index 5e55f04..35da2a5 100644 --- a/src/lst/ft_lstdestroy.c +++ b/src/lst/ft_lstdestroy.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Destroy a list and set his pointer to NULL ** \param del Delete Function for data of each node */ diff --git a/src/lst/ft_lstiter.c b/src/lst/ft_lstiter.c index 39d870b..e46b507 100644 --- a/src/lst/ft_lstiter.c +++ b/src/lst/ft_lstiter.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Iterate of list ** \param f Funtion applied to data of each node */ diff --git a/src/lst/ft_lstlast.c b/src/lst/ft_lstlast.c index 12fdeee..97b853d 100644 --- a/src/lst/ft_lstlast.c +++ b/src/lst/ft_lstlast.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Last node ** \return List's last node */ diff --git a/src/lst/ft_lstmap.c b/src/lst/ft_lstmap.c index bf96892..3182bb0 100644 --- a/src/lst/ft_lstmap.c +++ b/src/lst/ft_lstmap.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Clone a list and map a function to each node data ** \param lst Origin list ** \param f Function applied to each node's data diff --git a/src/lst/ft_lstnew.c b/src/lst/ft_lstnew.c index 41c8153..1616b71 100644 --- a/src/lst/ft_lstnew.c +++ b/src/lst/ft_lstnew.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Create a list node ** \param data Pointer to data of node */ diff --git a/src/lst/ft_lstpop_front.c b/src/lst/ft_lstpop_front.c index 798bf83..a61350a 100644 --- a/src/lst/ft_lstpop_front.c +++ b/src/lst/ft_lstpop_front.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Delete head node and replace it with next node ** \param del Delete function for node data */ diff --git a/src/lst/ft_lstpush_back.c b/src/lst/ft_lstpush_back.c index 372c18c..1dca078 100644 --- a/src/lst/ft_lstpush_back.c +++ b/src/lst/ft_lstpush_back.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Push new node to the list end ** \param new Pushed node */ diff --git a/src/lst/ft_lstpush_front.c b/src/lst/ft_lstpush_front.c index c17a586..85df649 100644 --- a/src/lst/ft_lstpush_front.c +++ b/src/lst/ft_lstpush_front.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Push node to list front ** \param new Pushed node */ diff --git a/src/lst/ft_lstremove_if.c b/src/lst/ft_lstremove_if.c index fdac710..4070355 100644 --- a/src/lst/ft_lstremove_if.c +++ b/src/lst/ft_lstremove_if.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Remove node on some condition ** \param cmp Comparison function, return 0 if equal ** \param ref Reference data passed has the first arg of `cmp` diff --git a/src/lst/ft_lstreverse.c b/src/lst/ft_lstreverse.c index fd5259b..7c2778d 100644 --- a/src/lst/ft_lstreverse.c +++ b/src/lst/ft_lstreverse.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Reverse a list */ diff --git a/src/lst/ft_lstreverse_ret.c b/src/lst/ft_lstreverse_ret.c index 259af9e..36c0c5c 100644 --- a/src/lst/ft_lstreverse_ret.c +++ b/src/lst/ft_lstreverse_ret.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Reverse list ** \return Pointer to reversed list */ diff --git a/src/lst/ft_lstsize.c b/src/lst/ft_lstsize.c index 6a92b99..3c6956b 100644 --- a/src/lst/ft_lstsize.c +++ b/src/lst/ft_lstsize.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief List size ** \return Number of node in list */ diff --git a/src/lst/ft_lstsort.c b/src/lst/ft_lstsort.c index fbd046a..9945a0f 100644 --- a/src/lst/ft_lstsort.c +++ b/src/lst/ft_lstsort.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Sort list ** \param cmp Comparison function, <0 if less, 0 if equal, >0 if greater ** \note Use merge sort algorithm diff --git a/src/lst/ft_lstsorted_merge.c b/src/lst/ft_lstsorted_merge.c index 0cd5721..995785f 100644 --- a/src/lst/ft_lstsorted_merge.c +++ b/src/lst/ft_lstsorted_merge.c @@ -12,7 +12,7 @@ #include "libft_lst.h" -/** +/* ** \brief Merge sorted lists, the new list is also sorted ** \param l1 First list ** \param l2 Second list -- cgit