/* Utility macro to make testing for string equality easier to read. */
#ifndef streq
#define streq(A,B) strcmp ((A), (B)) == 0
#define streq(A,B) (strcmp ((A), (B)) == 0)
#endif
/* Core note names. */
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.