edits
[iotcloud.git] / version2 / src / C / hashtable.h
index 0a50bb9f39511aa4beba010c6a56f11ae73149b0..b27dde245c6a6acdf4a48184cfa4539ca2bf20bd 100644 (file)
@@ -17,8 +17,8 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
-#include "mymemory.h"
 #include "common.h"
+#include "mymemory.h"
 
 /**
  * @brief Hashtable node
@@ -53,7 +53,7 @@ inline bool defaultEquals(_Key key1, _Key key2) {
  *
  * @tparam _Key    Type name for the key
  * @tparam _Val    Type name for the values to be stored
- * @tparam _KeyInt Integer type that is at least as large as _Key. Used for key
+ * @tparam _KeyInt int32_t type that is at least as large as _Key. Used for key
  *                 manipulation and storage.
  * @tparam _Shift  Logical shift to apply to all keys. Default 0.
  */