(libfetish_a_SOURCES): Add mmap-stack.h.
[coreutils.git] / src / checksum.h
blobf3978bdfbbc85c066d5287b6794279eb138ed8d0
1 #include <config.h>
3 #include <sys/types.h>
4 #include <stdio.h>
6 /* For long options that have no equivalent short option, use a
7 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
8 enum
10 ALG_UNSPECIFIED = 0,
11 ALG_MD5 = CHAR_MAX + 1,
12 ALG_SHA1
15 extern int algorithm;