Mercurial > hg > octave-nkf > gnulib-hg
comparison lib/crc.c @ 7584:a88f85e4728f
* lib/arcfour.c: Assume config.h.
* lib/arctwo.c: Likewise.
* lib/base64.c: Likewise.
* lib/check-version.c: Likewise.
* lib/crc.c: Likewise.
* lib/des.c: Likewise.
* lib/gc-gnulib.c: Likewise.
* lib/gc-libgcrypt.c: Likewise.
* lib/gc-pbkdf2-sha1.c: Likewise.
* lib/getaddrinfo.c: Likewise.
* lib/getdelim.c: Likewise.
* lib/getline.c: Likewise.
* lib/hmac-md5.c: Likewise.
* lib/hmac-sha1.c: Likewise.
* lib/iconvme.c: Likewise.
* lib/md2.c: Likewise.
* lib/md4.c: Likewise.
* lib/memxor.c: Likewise.
* lib/read-file.c: Likewise.
* lib/readline.c: Likewise.
* lib/rijndael-alg-fst.c: Likewise.
* lib/rijndael-api-fst.c: Likewise.
* lib/xgetdomainname.c: Likewise.
author | Eric Blake <ebb9@byu.net> |
---|---|
date | Sun, 29 Oct 2006 21:52:55 +0000 |
parents | 5b54872e7e56 |
children | bbbbbf4cd1c5 |
comparison
equal
deleted
inserted
replaced
7583:05f15d427bf3 | 7584:a88f85e4728f |
---|---|
1 /* crc.c -- cyclic redundancy checks | 1 /* crc.c -- cyclic redundancy checks |
2 Copyright (C) 2005 Free Software Foundation, Inc. | 2 Copyright (C) 2005, 2006 Free Software Foundation, Inc. |
3 | 3 |
4 This program is free software; you can redistribute it and/or | 4 This program is free software; you can redistribute it and/or |
5 modify it under the terms of the GNU General Public License as | 5 modify it under the terms of the GNU General Public License as |
6 published by the Free Software Foundation; either version 2, or (at | 6 published by the Free Software Foundation; either version 2, or (at |
7 your option) any later version. | 7 your option) any later version. |
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | 16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
17 02110-1301, USA. */ | 17 02110-1301, USA. */ |
18 | 18 |
19 /* Written by Simon Josefsson. */ | 19 /* Written by Simon Josefsson. */ |
20 | 20 |
21 #ifdef HAVE_CONFIG_H | 21 #include <config.h> |
22 # include <config.h> | |
23 #endif | |
24 | 22 |
25 #include "crc.h" | 23 #include "crc.h" |
26 | 24 |
27 /* Table of CRCs of all 8-bit messages. Generated by running code | 25 /* Table of CRCs of all 8-bit messages. Generated by running code |
28 from RFC 1952 modified to print out the table. */ | 26 from RFC 1952 modified to print out the table. */ |