mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 12:44:42 +00:00
bf127f4e1e
Previously you have to unpoison memory from the Rust, however Rust does supports MSan, so let's simply use it. But for this we need nightly Rust and recompile standard library. Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
16 lines
245 B
C++
16 lines
245 B
C++
#ifndef BLAKE3_H
|
|
#define BLAKE3_H
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
extern "C" {
|
|
|
|
char *blake3_apply_shim(const char *begin, uint32_t _size, uint8_t *out_char_data);
|
|
|
|
void blake3_free_char_pointer(char *ptr_to_free);
|
|
|
|
} // extern "C"
|
|
|
|
#endif /* BLAKE3_H */
|