]> git.gag.com Git - debian/gnuradio/commitdiff
fix .h to match .cc
authoreb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>
Sat, 21 Jul 2007 22:12:56 +0000 (22:12 +0000)
committereb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>
Sat, 21 Jul 2007 22:12:56 +0000 (22:12 +0000)
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6049 221aa14e-8319-0410-a670-987f0aec2ac5

gnuradio-core/src/lib/general/gr_crc32.h

index c5215b8336e88799e88daa01917b7ec4308cda47..b0c746acf356cbd80778c71bd19597d1b6a2150f 100644 (file)
  * 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 */