From: eb Date: Sat, 21 Jul 2007 22:12:56 +0000 (+0000) Subject: fix .h to match .cc X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=95c18a4684ad7a48b225decbee8177c6ad86ba7a;p=debian%2Fgnuradio fix .h to match .cc git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6049 221aa14e-8319-0410-a670-987f0aec2ac5 --- diff --git a/gnuradio-core/src/lib/general/gr_crc32.h b/gnuradio-core/src/lib/general/gr_crc32.h index c5215b83..b0c746ac 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 */