1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-09-01 07:58:12 +02:00

Adding vendor/secp256k1-0.3.0

This commit is contained in:
Henrik Hautakoski 2023-03-11 13:27:54 +01:00
parent 8a55500854
commit e8ee3fc0de
132 changed files with 59850 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#ifndef SECP256K1_INT128_STRUCT_H
#define SECP256K1_INT128_STRUCT_H
#include <stdint.h>
#include "util.h"
typedef struct {
uint64_t lo;
uint64_t hi;
} secp256k1_uint128;
typedef secp256k1_uint128 secp256k1_int128;
#endif