sentry-contrib-native-sys 0.3.0

Unofficial FFI bindings to the Sentry Native SDK for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#ifndef SENTRY_RANDOM_H_INCLUDED
#define SENTRY_RANDOM_H_INCLUDED

#include "sentry_boot.h"

/**
 * Utility function to get random bytes.
 */
int sentry__getrandom(void *dst, size_t len);

#endif