MCPcopy Create free account
hub / github.com/albertobsd/keyhunt / IntGroup

Method IntGroup

gmp256k1/IntGroup.cpp:22–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20using namespace std;
21
22IntGroup::IntGroup(int size) {
23 this->size = size;
24 subp = (Int *)calloc(size,sizeof(Int));
25}
26
27IntGroup::~IntGroup() {
28 free(subp);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected