Mercurial > hg > libxtract
comparison xtract/xtract_macros.h @ 5:cac976b2a69d
Changed xtract_f0 to xtract_lowest_match
author | Jamie Bullock <jamie@postlude.co.uk> |
---|---|
date | Thu, 05 Oct 2006 16:59:51 +0000 |
parents | 819937ea6359 |
children | 29e2738a376d |
comparison
equal
deleted
inserted
replaced
4:46efa5536d04 | 5:cac976b2a69d |
---|---|
27 | 27 |
28 #ifdef __cplusplus | 28 #ifdef __cplusplus |
29 extern "C" { | 29 extern "C" { |
30 #endif | 30 #endif |
31 | 31 |
32 #include <stdio.h> | |
33 | |
32 #define SQ(a) ((a) * (a)) | 34 #define SQ(a) ((a) * (a)) |
33 #define MIN(a, b) ((a) < (b) ? (a) : (b)) | 35 #define MIN(a, b) ((a) < (b) ? (a) : (b)) |
34 #define MAX(a, b) ((a) > (b) ? (a) : (b)) | 36 #define MAX(a, b) ((a) > (b) ? (a) : (b)) |
35 #define NOT_IMPLEMENTED printf("Feature not implemented yet.\n") | 37 #define NOT_IMPLEMENTED printf("Feature not implemented yet.\n") |
36 | 38 |