aboutsummaryrefslogtreecommitdiff
path: root/src/dlst/ft_dlstnew.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-04-03 17:06:38 +0200
committerCharles <sircharlesaze@gmail.com>2020-04-03 17:06:38 +0200
commit636c3ff6b600c291a40877ac52d8b0a1a58b9b79 (patch)
treef9746b5a5dc2d218756589facf00de2792eef331 /src/dlst/ft_dlstnew.c
parentbf263810b0a47a68fae0681e6e6d2229a488c069 (diff)
downloadlibft-636c3ff6b600c291a40877ac52d8b0a1a58b9b79.tar.gz
libft-636c3ff6b600c291a40877ac52d8b0a1a58b9b79.tar.bz2
libft-636c3ff6b600c291a40877ac52d8b0a1a58b9b79.zip
Added doubly linked list struct and basic functions on it
Diffstat (limited to 'src/dlst/ft_dlstnew.c')
-rw-r--r--src/dlst/ft_dlstnew.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/dlst/ft_dlstnew.c b/src/dlst/ft_dlstnew.c
new file mode 100644
index 0000000..6eb9346
--- /dev/null
+++ b/src/dlst/ft_dlstnew.c
@@ -0,0 +1,25 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_dlstnew.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/04/03 15:21:38 by charles #+# #+# */
+/* Updated: 2020/04/03 15:22:45 by charles ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#include "libft_dlst.h"
+
+t_ftdlst *ft_dlstnew(void *data)
+{
+ t_ftdlst *dlst;
+
+ if ((dlst = (t_ftdlst*)malloc(sizeof(t_ftdlst))) == NULL)
+ return (NULL);
+ dlst->prev = NULL;
+ dlst->next = NULL;
+ dlst->data = data;
+ return (dlst);
+}