Searched defs:STREQN (Results 1 – 2 of 2) sorted by relevance
52 #define STREQN(a, b, n) ((a)[0] == (b)[0] && strncmp(a, b, n) == 0) macro
71 #define STREQN(s1,s2) ((*s1 == *s2) && (strcmp(s1,s2) == 0)) macro