mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-12 12:14:36 +03:00
Clean up headers by using 'static' whenever possible.
Reduces resulting code size.
This commit is contained in:
8
Vector.h
8
Vector.h
@ -65,12 +65,16 @@ extern Object* Vector_get(Vector* this, int index);
|
||||
|
||||
extern int Vector_size(Vector* this);
|
||||
|
||||
void Vector_merge(Vector* this, Vector* v2);
|
||||
/*
|
||||
|
||||
*/
|
||||
|
||||
void Vector_add(Vector* this, void* data_);
|
||||
|
||||
extern int Vector_indexOf(Vector* this, void* search_, Object_Compare compare);
|
||||
|
||||
void Vector_foreach(Vector* this, Vector_procedure f);
|
||||
/*
|
||||
|
||||
*/
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user