util: Adding a strneq, to represent (!strncmp(a, b, n))

As we have streq to repesent (strcmp(a, b) == 0),I'm adding
strneq to represent (strncmp(a, b, n) == 0), that will be used
in umount.c (at least).
This commit is contained in:
Fabiano Fidencio 2010-10-07 04:24:39 -07:00 committed by Lennart Poettering
parent c226fa4196
commit 3846aeeba2

View file

@ -82,6 +82,7 @@ usec_t timeval_load(const struct timeval *tv);
struct timeval *timeval_store(struct timeval *tv, usec_t u);
#define streq(a,b) (strcmp((a),(b)) == 0)
#define strneq(a, b, n) (strncmp((a), (b), (n)) == 0)
bool streq_ptr(const char *a, const char *b);