added section titles to hcl-utl.h

This commit is contained in:
hyung-hwan 2019-03-06 01:57:06 +00:00
parent fd99432186
commit 4e4ac37dec

View File

@ -29,10 +29,9 @@
#include "hcl-cmn.h"
/* -----------------------------------------------------------------------
* DOUBLY LINKED LIST MACROS
* ----------------------------------------------------------------------- */
/* =========================================================================
* DOUBLY LINKED LIST
* ========================================================================= */
#define HCL_APPEND_TO_LIST(list, node) do { \
(node)->next = HCL_NULL; \
(node)->prev = (list)->last; \
@ -89,7 +88,9 @@
} while(0);
*/
/* =========================================================================
* ENDIAN CHANGE
* ========================================================================= */
#define HCL_CONST_SWAP16(x) \
((qse_uint16_t)((((qse_uint16_t)(x) & (qse_uint16_t)0x00ffU) << 8) | \
@ -115,6 +116,9 @@
# error UNKNOWN ENDIAN
#endif
/* =========================================================================
* HASH
* ========================================================================= */
#if (HCL_SIZEOF_SIZE_T == 4)
# define HCL_HASH_FNV_MAGIC_INIT (0x811c9dc5)