*** empty log message ***
[platform/upstream/coreutils.git] / src / checksum.h
1 #include <config.h>
2
3 #include <sys/types.h>
4 #include <stdio.h>
5
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
9 {
10   ALG_UNSPECIFIED = 0,
11   ALG_MD5 = CHAR_MAX + 1,
12   ALG_SHA1
13 };
14
15 extern int algorithm;