diff options
Diffstat (limited to 'src/binaryconst.h')
-rw-r--r-- | src/binaryconst.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/binaryconst.h b/src/binaryconst.h index 09d4e7fa..71215c41 100644 --- a/src/binaryconst.h +++ b/src/binaryconst.h @@ -1,14 +1,16 @@ #ifndef __BINARYCONST_H__ #define __BINARYCONST_H__ -/* binaryconst.h was integrated into the Dillo project in April 2004, and +/* @file + * + * Macros for allowing binary constants in C. + * By Tom Torfs - donated to the public domain + * + * binaryconst.h was integrated into the Dillo project in April 2004, and * presumably comes from the ancestor of the code found at * http://cprog.tomsweb.net/binconst.txt */ -/* Macros for allowing binary constants in C - * By Tom Torfs - donated to the public domain */ - #define HEX__(n) 0x##n##LU /* 8-bit conversion function */ |