diff mbox

libdvbv5: provide crc32 to c++

Message ID 1404670830-6863-1-git-send-email-neolynx@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

André Roth July 6, 2014, 6:20 p.m. UTC
allow C++ apps to use crc32

Signed-off-by: André Roth <neolynx@gmail.com>
---
 lib/include/libdvbv5/crc32.h | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)
diff mbox

Patch

diff --git a/lib/include/libdvbv5/crc32.h b/lib/include/libdvbv5/crc32.h
index d1968e8..4261bda 100644
--- a/lib/include/libdvbv5/crc32.h
+++ b/lib/include/libdvbv5/crc32.h
@@ -1,6 +1,6 @@ 
 /*
  * Copyright (c) 2011-2012 - Mauro Carvalho Chehab
- * Copyright (c) 2012 - Andre Roth <neolynx@gmail.com>
+ * Copyright (c) 2012-2014 - Andre Roth <neolynx@gmail.com>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -25,7 +25,15 @@ 
 #include <stdint.h>
 #include <unistd.h> /* size_t */
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 uint32_t crc32(uint8_t *data, size_t datalen, uint32_t crc);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif