OS1/movies/node.h

18 lines
238 B
C
Raw Normal View History

#include "stdlib.h"
#ifndef NODES
#define NODES
struct node {
struct node* node;
void* data;
};
void append_node(struct node*, struct node*);
struct node* appendv_node(struct node*, void*);
2023-10-13 01:39:26 -07:00
int count_nodes(struct node*);
#endif