aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-04-01 18:10:36 +0200
committerCharles <sircharlesaze@gmail.com>2020-04-01 18:10:36 +0200
commit9316f2063255bd4a0abd5c38d4c065969a8980bb (patch)
tree6c59f5192d372465219a121857ec4f726f34b38e /include
parentdd5d60dc4cf8052feb00847f9b2276cf105b0551 (diff)
downloadlibft-9316f2063255bd4a0abd5c38d4c065969a8980bb.tar.gz
libft-9316f2063255bd4a0abd5c38d4c065969a8980bb.tar.bz2
libft-9316f2063255bd4a0abd5c38d4c065969a8980bb.zip
Norm compliant comment format, dirty script for doxygen comments
Diffstat (limited to 'include')
-rw-r--r--include/libft_ht.h10
-rw-r--r--include/libft_lst.h6
2 files changed, 8 insertions, 8 deletions
diff --git a/include/libft_ht.h b/include/libft_ht.h
index 24abf95..10c6fc7 100644
--- a/include/libft_ht.h
+++ b/include/libft_ht.h
@@ -6,14 +6,14 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/31 10:36:09 by cacharle #+# #+# */
-/* Updated: 2020/02/28 12:18:19 by cacharle ### ########.fr */
+/* Updated: 2020/04/01 17:59:35 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBFT_HT_H
# define LIBFT_HT_H
-/**
+/*
** \file libft_ht.h
** \brief Hash table manipulation
*/
@@ -21,7 +21,7 @@
# include "libft.h"
# include "libft_lst.h"
-/**
+/*
** \brief Hash table entry, key/value pair
** \param key String key
** \param value Pointer to data
@@ -35,7 +35,7 @@ typedef struct s_ftht_entry
typedef t_ftlst* t_ftht_bucket;
-/**
+/*
** \brief Hash table struct
** \param size Number of buckets
** \param buckets Bucket array
@@ -59,7 +59,7 @@ t_ftht_entry *ft_htset(t_ftht *ht, char *key, void *value,
void ft_htdelone(t_ftht *ht, char *key,
void (*del)(t_ftht_entry*));
t_ftht_entry *ft_htentry_new(char *key, void *value);
-void ft_htiter(t_ftht *ht, void (*f)(t_ftht_entry*));
+void ft_htiter(t_ftht *ht, void (*f)(t_ftht_entry*));
/*
** internals
diff --git a/include/libft_lst.h b/include/libft_lst.h
index 04b1dbf..d7157a9 100644
--- a/include/libft_lst.h
+++ b/include/libft_lst.h
@@ -6,14 +6,14 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/31 10:36:39 by cacharle #+# #+# */
-/* Updated: 2020/02/28 12:23:31 by cacharle ### ########.fr */
+/* Updated: 2020/04/01 17:59:50 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBFT_LST_H
# define LIBFT_LST_H
-/**
+/*
** \file libft_lst.h
** \brief Linked list Manipulation
*/
@@ -22,7 +22,7 @@
# include "libft_types.h"
# include "libft_algo.h"
-/**
+/*
** \brief List struct
** \param data Pointer to node data
** \param next Pointer to next node or NULL if last node