libchat6
lc6_node.h
1 #ifndef LC6_NODE_H
2 #define LC6_NODE_H
3 
4 #include "../inc/lc6_common.h"
5 
6 LC6_NODE* lc6node_create(void);
7 void lc6node_free(LC6_NODE *node);
8 
9 #endif
Definition: lc6_common.h:26