aboutsummaryrefslogtreecommitdiffstats
path: root/src/libmdsserver/hash-help.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/libmdsserver/hash-help.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libmdsserver/hash-help.h b/src/libmdsserver/hash-help.h
index 2216434..f011236 100644
--- a/src/libmdsserver/hash-help.h
+++ b/src/libmdsserver/hash-help.h
@@ -29,7 +29,8 @@
* @param str The string
* @return The hash of the string
*/
-static inline size_t __attribute__((pure)) string_hash(const char* str)
+__attribute__((pure))
+static inline size_t string_hash(const char* str)
{
size_t hash = 0;
@@ -48,7 +49,8 @@ static inline size_t __attribute__((pure)) string_hash(const char* str)
* @param str_b The second string
* @return Whether the strings are equals
*/
-static inline int __attribute__((pure)) string_comparator(char* str_a, char* str_b)
+__attribute__((pure))
+static inline int string_comparator(char* str_a, char* str_b)
{
if ((str_a != NULL) && (str_b != NULL) && (str_a != str_b))
return !strcmp((char*)str_a, (char*)str_b);