1// bindgen-flags: --no-layout-tests 2typedef unsigned mbedtls_mpi_uint; 3 4/** 5 * \brief MPI structure 6 */ 7typedef struct 8{ 9 int s; /*!< integer sign */ 10 unsigned long n; /*!< total # of limbs */ 11 mbedtls_mpi_uint *p; /*!< pointer to limbs */ 12} 13mbedtls_mpi; 14 15