Renamed include guard

This commit is contained in:
seajee
2025-11-18 21:36:31 +01:00
parent 0faffa3829
commit e75b6f178b

6
hm.h
View File

@@ -1,8 +1,8 @@
// hm.h - v1.0.0 - MIT License
// chained hash table implementation as a single header library.
#ifndef _HM_H_
#define _HM_H_
#ifndef HM_H_
#define HM_H_
#include <stdbool.h>
#include <stddef.h>
@@ -94,7 +94,7 @@ Hm__Bucket *hm__bucket_create(const void *key, size_t key_size, const void *valu
}
#endif // __cplusplus
#endif // _HM_H_
#endif // HM_H_
#ifdef HM_IMPLEMENTATION