diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-08-28 00:41:44 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-08-28 16:34:10 +0200 |
commit | a681219a9275ded66dd927750edcec7859cbffbb (patch) | |
tree | 94c1c1b8d21aedb1d495dd71a72e433f3845c2b4 /src/util.h | |
parent | 398f78c1ffabd48914f2a4aca5dc1d43396dbbab (diff) | |
download | fastd-a681219a9275ded66dd927750edcec7859cbffbb.tar fastd-a681219a9275ded66dd927750edcec7859cbffbb.zip |
Add UHASH implementation
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -66,3 +66,28 @@ static inline size_t block_count(size_t l, size_t a) { static inline size_t alignto(size_t l, size_t a) { return block_count(l, a)*a; } + +/** + Checks if two strings are equal + + @param str1 The first string (may be NULL) + @param str2 The second string (may be NULL) + + @return True if both strings are NULL or both strings are not NULL and equal +*/ +static inline bool strequal(const char *str1, const char *str2) { + if (str1 && str2) + return (!strcmp(str1, str2)); + else + return (str1 == str2); +} + +/** Returns the maximum of two size_t values */ +static inline size_t max_size_t(size_t a, size_t b) { + return (a > b) ? a : b; +} + +/** Returns the minimum of two size_t values */ +static inline size_t min_size_t(size_t a, size_t b) { + return (a < b) ? a : b; +} |