From 5f86a8b05cbd5e90000cc18727bd32fb1102f09a Mon Sep 17 00:00:00 2001 From: Douglas Creager Date: Mon, 7 Mar 2011 17:28:32 -0500 Subject: [PATCH] Use doxygen commands instead of HTML escapes In our documentation, we show which header file to include for each libcork module. This patch updates those include lines to use the doxygen \< and \> commands, instead of the HTML < and > escapes. It just looks a bit cleaner. --- include/libcork/core.h | 2 +- include/libcork/core/byte-order.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/libcork/core.h b/include/libcork/core.h index 9f48bad..28e1468 100644 --- a/include/libcork/core.h +++ b/include/libcork/core.h @@ -19,7 +19,7 @@ /** * @defgroup core Core module * - * #%include <libcork/core.h> + * #%include \ */ /*** order of groups in documentation ***/ diff --git a/include/libcork/core/byte-order.h b/include/libcork/core/byte-order.h index 9e797ef..6559990 100644 --- a/include/libcork/core/byte-order.h +++ b/include/libcork/core/byte-order.h @@ -22,7 +22,7 @@ /** * @addtogroup byte_order Byte order * - * #%include <libcork/core/byte-order.h> + * #%include \ * * This section contains definitions for determining the endianness of * the host system, and for byte-swapping integer values of various @@ -37,7 +37,7 @@ * @defgroup endianness Endianness detection * @ingroup byte_order * - * #%include <libcork/core/byte-order.h> + * #%include \ * * The macros in this section can be used to determine the endianness of * the current system. We also provide a C string constant for the @@ -160,7 +160,7 @@ * @defgroup byteswap Byte swapping macros * @ingroup byte_order * - * #%include <libcork/core/byte-order.h> + * #%include \ * * The macros in this section can be used to swap integer values of * various sizes. There are a couple variations for each integer types: