From bad2b1934da66021cbc7f0d715686706bd444449 Mon Sep 17 00:00:00 2001 From: JSDurand Date: Sat, 22 Jan 2022 02:36:54 +0800 Subject: Implemented a hash table with any type of keys --- src/util.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/util.h') diff --git a/src/util.h b/src/util.h index 3fd533c..fae8517 100644 --- a/src/util.h +++ b/src/util.h @@ -16,6 +16,7 @@ typedef unsigned char BOOL; #define HC_ATTR __attribute__((__hot__, __const__)) #define H_ATTR __attribute__((__hot__)) #define P_ATTR __attribute__((__pure__)) +#define C_ATTR __attribute__((__const__)) #define UNUSED __attribute__((__unused__)) #define U_ATTR UNUSED -- cgit v1.2.3-18-g5258