macro cleanup

This commit is contained in:
hladu357 2024-06-06 14:45:33 +02:00
parent 9ca2c35a90
commit 92142e3d56
1 changed files with 4 additions and 4 deletions

View File

@ -5,16 +5,16 @@
#include "stdlib.h" #include "stdlib.h"
#include "string.h" #include "string.h"
#define VALID_RULE 1
#define INVALID_RULE 0
#define RULE_NOT_FOUND -1
union ipv6 { union ipv6 {
unsigned short s[8]; unsigned short s[8];
unsigned int i[4]; unsigned int i[4];
unsigned long l[2]; unsigned long l[2];
}; };
#define VALID_RULE 1
#define INVALID_RULE 0
#define RULE_NOT_FOUND -1
struct trie_node { struct trie_node {
struct trie_node* _l; struct trie_node* _l;
struct trie_node* _r; struct trie_node* _r;