Skip to content

Instantly share code, notes, and snippets.

View Yucukof's full-sized avatar
👨‍🎓
Student Profile

Hadrien Yucukof

👨‍🎓
Student Profile
View GitHub Profile
@meylingtaing
meylingtaing / llist.c
Last active September 24, 2024 15:49
A generic linked list library for C
/* llist.c
* Generic Linked List implementation
*/
#include <stdlib.h>
#include <stdio.h>
#include "llist.h"
llist *llist_create(void *new_data)
{