15 lines
276 B
C
15 lines
276 B
C
#ifndef ASSIGNMENT1_NODE_H
|
|
#define ASSIGNMENT1_NODE_H
|
|
typedef struct node {
|
|
struct node *next_elem;
|
|
char *data;
|
|
} Node;
|
|
|
|
Node *createNode(char *data);
|
|
|
|
void destroyNode(Node *node);
|
|
|
|
void replaceData(Node *node, char *data);
|
|
|
|
#endif //ASSIGNMENT1_NODE_H
|