ooh okay diva

This commit is contained in:
Lobo 2026-02-08 10:03:56 -03:00
parent 90175b7e26
commit 58ba150c93
17 changed files with 1122 additions and 94 deletions

View file

@ -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;
}