ClickHouse/rust/BLAKE3/include/blake3.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
341 B
C++
Raw Normal View History

2022-09-13 20:09:39 +00:00
#ifndef BLAKE3_H
#define BLAKE3_H
2022-09-13 20:09:39 +00:00
#include <cstdint>
extern "C" {
char *blake3_apply_shim(const char *begin, uint32_t _size, uint8_t *out_char_data);
char *blake3_apply_shim_msan_compat(const char *begin, uint32_t size, uint8_t *out_char_data);
2022-08-05 18:27:26 +00:00
void blake3_free_char_pointer(char *ptr_to_free);
} // extern "C"
2022-09-13 20:09:39 +00:00
#endif /* BLAKE3_H */