db/fixup_kernel.sh: fix clear_user() handling
[smatch.git] / sm_hash.c
blob63e79865ad1aa03da0bdf73ce382af89bb72481a
1 /*
2 * Copyright (C) 2022 Oracle.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see http://www.gnu.org/copyleft/gpl.txt
18 #include <stdio.h>
20 unsigned long long str_to_llu_hash_helper(const char *str);
22 int main(int argc, char **argv)
24 unsigned long long hash;
26 if (argc != 2) {
27 printf("Usage: sm_hash <string>\n");
28 return -1;
31 hash = str_to_llu_hash_helper(argv[1]);
33 printf("%llu\n", hash);
35 return 0;