Included Files
- #include <nut/include/include/stdint.h>
Preprocessor definitions
#define BIGINT_H_
#define BIGINT_WORD_SIZE 32
#define BIGINT_FBS_MASK
#define BIGINT_NEG_MASK 0x80
typedef uint32_t bigint_word_t
typedef uint64_t bigint_wordplus_t
typedef int64_t bigint_wordplus_signed_t
typedef struct {...} bigint_t
struct
|
|
{
|
|
uint16_t length_W;
|
|
uint8_t info;
|
|
bigint_word_t* wordv;
|
|
}
|
|