v4k-git-backup/tools/uuid.c

12 lines
155 B
C
Raw Permalink Normal View History

2023-08-10 17:55:53 +00:00
#include <stdio.h>
#include "v4k.h"
int main(int argc, char **argv) {
if (argc != 2) {
return -1;
}
printf("%llx", hash_str(argv[1]));
return 0;
}