первый

This commit is contained in:
2024-11-01 12:23:13 +05:00
parent 801d9d33fa
commit 0688c46a7e
226 changed files with 162921 additions and 0 deletions

17
lib/crc32.h Normal file
View File

@ -0,0 +1,17 @@
/*
* crc32.h
*
* Created on: 20.12.2014
* Author: igor
*/
#ifndef CRC32_H_
#define CRC32_H_
#include <string>
unsigned int crc32(const char *buf, size_t size);
unsigned int crc32m(const char *buf, size_t size, unsigned int crc);
unsigned int crc32s(std::string str);
#endif /* CRC32_H_ */