1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 10:51:48 +02:00
Files
coreutils/src/checksum.h

16 lines
296 B
C
Raw Normal View History

2000-10-22 11:51:50 +00:00
#include <config.h>
#include <sys/types.h>
2000-10-22 21:11:53 +00:00
#include <stdio.h>
2000-10-22 11:51:50 +00:00
/* For long options that have no equivalent short option, use a
non-character as a pseudo short option, starting with CHAR_MAX + 1. */
enum
{
ALG_UNSPECIFIED = 0,
ALG_MD5 = CHAR_MAX + 1,
ALG_SHA1
};
extern int algorithm;