/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
Copyright 2014 Michal Schmidt
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include "hash-funcs.h"
}
int string_compare_func(const void *a, const void *b) {
return strcmp(a, b);
}
.hash = string_hash_func,
};
siphash24_compress(&p, sizeof(p), state);
}
int trivial_compare_func(const void *a, const void *b) {
return a < b ? -1 : (a > b ? 1 : 0);
}
};
}
uint64_t a, b;
return a < b ? -1 : (a > b ? 1 : 0);
}
.hash = uint64_hash_func,
};
#if SIZEOF_DEV_T != 8
}
dev_t a, b;
return a < b ? -1 : (a > b ? 1 : 0);
}
.hash = devt_hash_func,
};
#endif