Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust-bindgen
/
refs/heads/main
/
.
/
bindgen-tests
/
tests
/
headers
/
convert-cpp-comment-to-rust.hpp
blob: f5bbbf58b29cfea40b1d046c5a6f5a26ac2fe2eb [
file
] [
log
] [
blame
] [
edit
]
// bindgen-flags: --no-layout-tests
typedef
unsigned
mbedtls_mpi_uint
;
/**
* \brief MPI structure
*/
typedef
struct
{
int
s
;
/*!< integer sign */
unsigned
long
n
;
/*!< total # of limbs */
mbedtls_mpi_uint
*
p
;
/*!< pointer to limbs */
}
mbedtls_mpi
;