diff options
| author | Tyge Løvset <[email protected]> | 2020-03-12 13:35:27 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-03-12 13:35:27 +0100 |
| commit | 4002a45bfad63beed7e2865a5657e4639dfe7e35 (patch) | |
| tree | c3dcebed7f818f689bea8cc04e7059bb653c47c3 | |
| parent | f81e72530ea1ff1a564aaa299f9a3402aaea4796 (diff) | |
| download | STC-modified-4002a45bfad63beed7e2865a5657e4639dfe7e35.tar.gz STC-modified-4002a45bfad63beed7e2865a5657e4639dfe7e35.zip | |
Update and rename c_hashmap.h to clib/cmap.h
| -rw-r--r-- | clib/cmap.h (renamed from c_hashmap.h) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/c_hashmap.h b/clib/cmap.h index 1011d363..5799d90f 100644 --- a/c_hashmap.h +++ b/clib/cmap.h @@ -20,10 +20,10 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
-#ifndef CHASHMAP_H_
-#define CHASHMAP_H_
+#ifndef CMAP_H_
+#define CMAP_H_
-#include "c_vector.h"
+#include "cvector.h"
#define cmap_initializer {cvector_initializer, 0, 0.8f}
#define cmap_size(map) ((size_t) (map)._size)
|
