15 lines
262 B
C
15 lines
262 B
C
|
#ifndef SECP256K1_INT128_STRUCT_H
|
||
|
#define SECP256K1_INT128_STRUCT_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include "util.h"
|
||
|
|
||
|
typedef struct {
|
||
|
uint64_t lo;
|
||
|
uint64_t hi;
|
||
|
} rustsecp256k1_v0_8_0_uint128;
|
||
|
|
||
|
typedef rustsecp256k1_v0_8_0_uint128 rustsecp256k1_v0_8_0_int128;
|
||
|
|
||
|
#endif
|