summaryrefslogtreecommitdiffstats
path: root/gatchat/crc-ccitt.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-04-09 17:08:30 +0200
committerMarcel Holtmann <marcel@holtmann.org>2010-04-09 17:08:30 +0200
commitdf9723db02dad0a5b0cc244f353236ad2c798754 (patch)
treea0d83e2aa3d9674c51917d207abbe1db9b75b9cc /gatchat/crc-ccitt.h
parenta4921aef11da2dfaaf833a1c5bb1368ff39ae92e (diff)
downloadofono-df9723db02dad0a5b0cc244f353236ad2c798754.tar.bz2
Move CRC-CCITT table and helper into separate file
Diffstat (limited to 'gatchat/crc-ccitt.h')
-rw-r--r--gatchat/crc-ccitt.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/gatchat/crc-ccitt.h b/gatchat/crc-ccitt.h
new file mode 100644
index 00000000..60d20729
--- /dev/null
+++ b/gatchat/crc-ccitt.h
@@ -0,0 +1,33 @@
+/*
+ *
+ * AT chat library with GLib integration
+ *
+ * Copyright (C) 2008-2010 Intel Corporation. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <glib.h>
+
+extern guint16 const crc_ccitt_table[256];
+
+static inline guint16 crc_ccitt_byte(guint16 crc, const guint8 c)
+{
+ return (crc >> 8) ^ crc_ccitt_table[(crc ^ c) & 0xff];
+}