summaryrefslogtreecommitdiff
path: root/tests/headers/convert-cpp-comment-to-rust.hpp
blob: 649c236538010b4c3d35c380a7555c07aaf6afde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

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;