aboutsummaryrefslogtreecommitdiff
path: root/src/binaryconst.h
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2024-03-09 17:35:19 +0100
committerrodarima <rodarima@gmail.com>2024-03-09 18:43:51 +0100
commit4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch)
treeb8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/binaryconst.h
parentbde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff)
Use Doxygen comments for C files
Diffstat (limited to 'src/binaryconst.h')
-rw-r--r--src/binaryconst.h10
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 */