mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-12 12:14:36 +03:00
Further, minor cleanups to headers post-MakeHeaders
Remove leftover empty ifdef/endif pairs, whitespace. The generated htop.h file was also unused - removed.
This commit is contained in:
6
Vector.h
6
Vector.h
@ -24,7 +24,6 @@ typedef struct Vector_ {
|
||||
bool owner;
|
||||
} Vector;
|
||||
|
||||
|
||||
Vector* Vector_new(ObjectClass* type, bool owner, int size);
|
||||
|
||||
void Vector_delete(Vector* this);
|
||||
@ -37,11 +36,6 @@ int Vector_count(Vector* this);
|
||||
|
||||
void Vector_prune(Vector* this);
|
||||
|
||||
// If I were to use only one sorting algorithm for both cases, it would probably be this one:
|
||||
/*
|
||||
|
||||
*/
|
||||
|
||||
void Vector_quickSort(Vector* this);
|
||||
|
||||
void Vector_insertionSort(Vector* this);
|
||||
|
Reference in New Issue
Block a user