Changeset 6072

Show
Ignore:
Timestamp:
07/26/07 08:50:15
Author:
jcorgan
Message:

Applied changeset r6049 on trunk to release branch.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gnuradio/branches/releases/3.0/gnuradio-core/src/lib/general/gr_crc32.h

    r3534 r6072  
    3535 * transmitted in big endian order. 
    3636 */ 
    37 unsigned int gr_update_crc32(unsigned int crc, const unsigned char *buf, int len); 
    38 unsigned int gr_update_crc32(unsigned int crc, const std::string buf); 
     37unsigned int  
     38gr_update_crc32(unsigned int crc, const unsigned char *buf, size_t len); 
    3939 
    40 unsigned int gr_crc32(const unsigned char *buf, int len); 
    41 unsigned int gr_crc32(const std::string buf); 
     40unsigned int  
     41gr_update_crc32(unsigned int crc, const std::string buf); 
     42 
     43unsigned int  
     44gr_crc32(const unsigned char *buf, size_t len); 
     45 
     46unsigned int  
     47gr_crc32(const std::string buf); 
    4248 
    4349#endif /* INCLUDED_CRC32_H */