Skip to content

Instantly share code, notes, and snippets.

/** see http://stackoverflow.com/questions/2242553/copy-a-linked-list/2242645#2242645 */
#include <assert.h>
#include <stdio.h>
#include <stdlib.h> // malloc
typedef struct Node* pNode;
typedef void (*node_visitor_t)(pNode);
struct Node {
int data;