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