ooh okay diva
This commit is contained in:
parent
90175b7e26
commit
58ba150c93
17 changed files with 1122 additions and 94 deletions
|
|
@ -9,3 +9,10 @@ uint32_t growl_type(Growl obj) {
|
|||
return hdr->type;
|
||||
}
|
||||
|
||||
int growl_equals(Growl a, Growl b) {
|
||||
if (a != b)
|
||||
return 0;
|
||||
if (growl_type(a) != growl_type(b))
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue