#ifndef POSTHASTE_UTILS_H#define POSTHASTE_UTILS_H/* random things not strictly related to anything else */staticinlineboolsame_id(constchar*a,constchar*b){/* I always forget to compare to zero */returnstrcmp(a,b)==0;}#define UNUSED(x) (void)x#endif /* POSTHASTE_UTILS_H */