Author: eb Date: 2007-07-21 16:12:56 -0600 (Sat, 21 Jul 2007) New Revision: 6049
Modified: gnuradio/trunk/gnuradio-core/src/lib/general/gr_crc32.h Log: fix .h to match .cc Modified: gnuradio/trunk/gnuradio-core/src/lib/general/gr_crc32.h =================================================================== --- gnuradio/trunk/gnuradio-core/src/lib/general/gr_crc32.h 2007-07-21 21:39:04 UTC (rev 6048) +++ gnuradio/trunk/gnuradio-core/src/lib/general/gr_crc32.h 2007-07-21 22:12:56 UTC (rev 6049) @@ -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 */ _______________________________________________ Commit-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/commit-gnuradio
