remove functions.h

This commit is contained in:
Pheenoh
2021-01-31 15:33:34 -05:00
parent f893c39194
commit 90578d539a
117 changed files with 3999 additions and 6094 deletions
-2
View File
@@ -3,10 +3,8 @@
#include "global.h"
extern "C" {
#define NODE_GET_PREV(pNode) (pNode ? pNode->mpPrevNode : NULL)
#define NODE_GET_NEXT(pNode) (pNode ? pNode->mpNextNode : NULL)
void cNd_Join(node_class* pA, node_class* pB) {
pA->mpNextNode = pB;
pB->mpPrevNode = pA;