diff --git a/hashmap.c b/hashmap.c index 3978400..6885cb3 100644 --- a/hashmap.c +++ b/hashmap.c @@ -394,4 +394,5 @@ int hashmap_length(map_t in){ hashmap_map* m = (hashmap_map *) in; if(m != NULL) return m->size; else return 0; -} \ No newline at end of file +} + diff --git a/hashmap.h b/hashmap.h index 000efad..492da7a 100644 --- a/hashmap.h +++ b/hashmap.h @@ -78,4 +78,5 @@ extern void hashmap_free(map_t in); */ extern int hashmap_length(map_t in); -#endif __HASHMAP_H__ \ No newline at end of file +#endif +