Sign in
◑
Theme
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_rust
/
9290bb7f4dea37e3a794089e5cab112af9143706
/
.
/
test
/
linker_inputs_propagation
/
resolver.rs
blob: b078d81823891996383357e964e74b2ff7f94878 [
file
]
use
std
::
ffi
::
c_void
;
extern
"C"
{
fn
ns_initparse
(
message
:
*
const
u8
,
message_length
:
i32
,
handle
:
*
mut
c_void
)
->
i32
;
}
#[
no_mangle
]
pub
extern
"C"
fn
resolver_symbol
()
->
*
const
c_void
{
ns_initparse
as
*
const
c_void
}