diff options
author | Richard Jones <rjones@redhat.com> | 2009-11-10 17:09:12 +0000 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-11-10 17:09:12 +0000 |
commit | ade327a7af869d4d70e28e2a596473943e0299dd (patch) | |
tree | 983718c4c6c09af2f76d8a6576848fcbfda9cd0d /fish/fish.h | |
parent | 3833ddc6566f92783dc5a8894383c304e3d2c0b4 (diff) | |
download | libguestfs-ade327a7af869d4d70e28e2a596473943e0299dd.tar.gz libguestfs-ade327a7af869d4d70e28e2a596473943e0299dd.tar.xz libguestfs-ade327a7af869d4d70e28e2a596473943e0299dd.zip |
Don't export STREQ and friends in <guestfs.h>
Move these to private header file(s) and other places as required
since these aren't part of the public API.
Diffstat (limited to 'fish/fish.h')
-rw-r--r-- | fish/fish.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fish/fish.h b/fish/fish.h index cdb3d634..8b3bdbc0 100644 --- a/fish/fish.h +++ b/fish/fish.h @@ -30,6 +30,16 @@ #define N_(str) str #endif +#define STREQ(a,b) (strcmp((a),(b)) == 0) +#define STRCASEEQ(a,b) (strcasecmp((a),(b)) == 0) +#define STRNEQ(a,b) (strcmp((a),(b)) != 0) +#define STRCASENEQ(a,b) (strcasecmp((a),(b)) != 0) +#define STREQLEN(a,b,n) (strncmp((a),(b),(n)) == 0) +#define STRCASEEQLEN(a,b,n) (strncasecmp((a),(b),(n)) == 0) +#define STRNEQLEN(a,b,n) (strncmp((a),(b),(n)) != 0) +#define STRCASENEQLEN(a,b,n) (strncasecmp((a),(b),(n)) != 0) +#define STRPREFIX(a,b) (strncmp((a),(b),strlen((b))) == 0) + /* in fish.c */ extern guestfs_h *g; extern int quit; |