Renamed include guard
This commit is contained in:
6
hm.h
6
hm.h
@@ -1,8 +1,8 @@
|
|||||||
// hm.h - v1.0.0 - MIT License
|
// hm.h - v1.0.0 - MIT License
|
||||||
// chained hash table implementation as a single header library.
|
// chained hash table implementation as a single header library.
|
||||||
|
|
||||||
#ifndef _HM_H_
|
#ifndef HM_H_
|
||||||
#define _HM_H_
|
#define HM_H_
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stddef.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 // __cplusplus
|
||||||
|
|
||||||
#endif // _HM_H_
|
#endif // HM_H_
|
||||||
|
|
||||||
#ifdef HM_IMPLEMENTATION
|
#ifdef HM_IMPLEMENTATION
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user