Hashtable update

- use consistent type for key by introducing a new typedef
- use unsigned types for sizes
- name parameters in foreach function typedef
This commit is contained in:
Christian Göttsche
2020-10-21 21:25:59 +02:00
committed by BenBE
parent 15eab2012d
commit 7914ec201e
5 changed files with 31 additions and 29 deletions

View File

@ -54,7 +54,7 @@ void Vector_set(Vector* this, int idx, void* data_);
Object* Vector_get(Vector* this, int idx);
int Vector_size(const Vector* this);
int Vector_count(const Vector* this);
unsigned int Vector_count(const Vector* this);
#else /* NDEBUG */