Advertisement
Guest User

Untitled

a guest
Dec 16th, 2011
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. #include "crc.hpp"
  2. #include <stdlib.h>
  3.  
  4. void some(boost::crc_32_type& result, void* ptr, size_t size)
  5. {
  6.   result.process_bytes(ptr, size);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement