search and filter for the strace and lsof screens!

This commit is contained in:
Hisham Muhammad
2012-11-10 00:31:37 +00:00
parent 259e1a2938
commit 2a73405cd0
19 changed files with 562 additions and 302 deletions

View File

@ -23,12 +23,12 @@ typedef struct Vector_ {
int arraySize;
int growthRate;
int items;
char* vectorType;
char* type;
bool owner;
} Vector;
Vector* Vector_new(char* vectorType_, bool owner, int size, Object_Compare compare);
Vector* Vector_new(char* type, bool owner, int size, Object_Compare compare);
void Vector_delete(Vector* this);