Added missing file...

This commit is contained in:
Andrew Pamment 2017-03-18 23:11:50 +10:00
parent 807574ccf4
commit f35685578e

View File

@ -0,0 +1,17 @@
#ifndef NODE4D_H
#define NODE4D_H
#include <shared/types.h>
struct Node4D
{
uint16_t Zone,Net,Node,Point;
};
bool Parse4D(char *buf, struct Node4D *node);
bool Parse4DTemplate(char *buf, struct Node4D *node,struct Node4D *tpl);
void Copy4D(struct Node4D *node1,struct Node4D *node2);
int Compare4D(struct Node4D *node1,struct Node4D *node2);
void Print4D(struct Node4D *n4d,char *dest);
#endif