summaryrefslogtreecommitdiff
path: root/hasher.c
blob: 435dbfa59870498cfac93a7404f443eff9a1117d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "kerncompat.h"
#include "hash.h"

int main() {
	u64 result;
	int ret;
	char line[255];
	char *p;
	while(1) {
		p = fgets(line, 255, stdin);
		if (!p)
			break;
		if (strlen(line) == 0)
			continue;
		if (line[strlen(line)-1] == '\n')
			line[strlen(line)-1] = '\0';
		ret = btrfs_name_hash(line, strlen(line), &result);
		BUG_ON(ret);
		printf("hash returns %Lu\n", result);
	}
	return 0;
}