Skip to content

Instantly share code, notes, and snippets.

View sashapodgoreanu's full-sized avatar

Alexandru Podgoreanu sashapodgoreanu

View GitHub Profile
@sashapodgoreanu
sashapodgoreanu / list.c
Created March 29, 2019 18:25 — forked from icheishvili/list.c
Linked List in C with Iterator
struct list_node {
void* data;
struct list_node* next;
};
struct list {
struct list_node* head;
};
struct list* list_create() {