X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gnuradio-core%2Fsrc%2Flib%2Fgeneral%2Fgr_crc32.h;h=b0c746acf356cbd80778c71bd19597d1b6a2150f;hb=149de12d84580715664dc5461ab5d10ae4ff1ed8;hp=39f851c4b7ff569f52ecbf81e1df5636c1d71455;hpb=b78ae1de4d9bbde942e5e7556630d7ccd8161c30;p=debian%2Fgnuradio diff --git a/gnuradio-core/src/lib/general/gr_crc32.h b/gnuradio-core/src/lib/general/gr_crc32.h index 39f851c4..b0c746ac 100644 --- a/gnuradio-core/src/lib/general/gr_crc32.h +++ b/gnuradio-core/src/lib/general/gr_crc32.h @@ -6,7 +6,7 @@ * * GNU Radio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) + * the Free Software Foundation; either version 3, or (at your option) * any later version. * * GNU Radio is distributed in the hope that it will be useful, @@ -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 */