diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-09 17:35:19 +0100 |
---|---|---|
committer | rodarima <rodarima@gmail.com> | 2024-03-09 18:43:51 +0100 |
commit | 4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch) | |
tree | b8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/binaryconst.h | |
parent | bde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff) |
Use Doxygen comments for C files
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 */ |