diff options
| author | Henrik Rydberg <rydberg@euromail.se> | 2008-11-08 22:00:50 +0100 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@euromail.se> | 2008-11-08 22:00:50 +0100 |
| commit | 2d96d426e063a4c2c33cabf9c6ebf570db1fcf1b (patch) | |
| tree | 941af20ba688ee5da39190d626688394bf82567f /match/match.h | |
| parent | 30f8e07f61c40fc3371445251972f36e1474b2b3 (diff) | |
culprit: step2a row should start at zero
plus cleanup
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'match/match.h')
| -rw-r--r-- | match/match.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/match/match.h b/match/match.h index 03bf600..8936de4 100644 --- a/match/match.h +++ b/match/match.h | |||
| @@ -13,10 +13,6 @@ | |||
| 13 | #define MIN(a, b) ((a) < (b) ? (a) : (b)) | 13 | #define MIN(a, b) ((a) < (b) ? (a) : (b)) |
| 14 | #define MAX(a, b) ((a) < (b) ? (b) : (a)) | 14 | #define MAX(a, b) ((a) < (b) ? (b) : (a)) |
| 15 | 15 | ||
| 16 | #define GETBIT(m, x) ((m>>(x))&1U) | ||
| 17 | #define SETBIT(m, x) (m|=(1U<<(x))) | ||
| 18 | #define CLEARBIT(m, x) (m&=~(1U<<(x))) | ||
| 19 | |||
| 20 | typedef int bool; | 16 | typedef int bool; |
| 21 | 17 | ||
| 22 | //////////////////////////////////////////////////////// | 18 | //////////////////////////////////////////////////////// |
