aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/crcdrm.h
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2011-08-30 13:46:42 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2011-08-30 13:46:42 +0000
commited574dde2dceea0ea2e33f4c0105d37aad437c24 (patch)
tree4b1f8343011ca58ba5cd44782166f029cc7e3a8b /wsutil/crcdrm.h
parentb094cd58543b26be83409f6cc558cf24eaed4f83 (diff)
Move all crc routines to libwsutil.
This way we can use the crc routines in wiretap. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38800 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'wsutil/crcdrm.h')
-rw-r--r--wsutil/crcdrm.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/wsutil/crcdrm.h b/wsutil/crcdrm.h
new file mode 100644
index 0000000000..195cee09d1
--- /dev/null
+++ b/wsutil/crcdrm.h
@@ -0,0 +1,32 @@
+/* crcdrm.h
+ * another CRC 16
+ * Copyright 2006, British Broadcasting Corporation
+ *
+ * $Id$
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef _CRCDRM_H
+
+#include <stdlib.h>
+
+unsigned long crc_drm(const char *data, size_t bytesize,
+ unsigned short num_crc_bits, unsigned long crc_gen, int invert);
+#endif