summaryrefslogtreecommitdiff
path: root/gnuradio-core
diff options
context:
space:
mode:
authoreb2007-07-21 22:12:56 +0000
committereb2007-07-21 22:12:56 +0000
commit95c18a4684ad7a48b225decbee8177c6ad86ba7a (patch)
tree1bb9f22feeaf584504c7c348c4cb4352fe60b14b /gnuradio-core
parent937b719d2e57d0497293d603da10cac2532346f6 (diff)
downloadgnuradio-95c18a4684ad7a48b225decbee8177c6ad86ba7a.tar.gz
gnuradio-95c18a4684ad7a48b225decbee8177c6ad86ba7a.tar.bz2
gnuradio-95c18a4684ad7a48b225decbee8177c6ad86ba7a.zip
fix .h to match .cc
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6049 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-core')
-rw-r--r--gnuradio-core/src/lib/general/gr_crc32.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/gnuradio-core/src/lib/general/gr_crc32.h b/gnuradio-core/src/lib/general/gr_crc32.h
index c5215b833..b0c746acf 100644
--- a/gnuradio-core/src/lib/general/gr_crc32.h
+++ b/gnuradio-core/src/lib/general/gr_crc32.h
@@ -34,10 +34,16 @@
* complement of the final running CRC. The resulting CRC should be
* transmitted in big endian order.
*/
-unsigned int gr_update_crc32(unsigned int crc, const unsigned char *buf, int len);
-unsigned int gr_update_crc32(unsigned int crc, const std::string buf);
+unsigned int
+gr_update_crc32(unsigned int crc, const unsigned char *buf, size_t len);
-unsigned int gr_crc32(const unsigned char *buf, int len);
-unsigned int gr_crc32(const std::string buf);
+unsigned int
+gr_update_crc32(unsigned int crc, const std::string buf);
+
+unsigned int
+gr_crc32(const unsigned char *buf, size_t len);
+
+unsigned int
+gr_crc32(const std::string buf);
#endif /* INCLUDED_CRC32_H */