aboutsummaryrefslogtreecommitdiff
path: root/src/exhaustive/check.h
blob: 9aa5a3c07e65832f0a49d358acb5031913a302c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * ecgen, tool for generating Elliptic curve domain parameters
 * Copyright (C) 2017-2018 J08nY
 */
/**
 * @file check.h
 */
#ifndef ECGEN_EXHAUSTIVE_CHECK_H
#define ECGEN_EXHAUSTIVE_CHECK_H

#include "misc/types.h"

/**
 * @brief
 * @return
 */
check_t *check_new(check_f one, ...);

/**
 * @brief
 * @param check
 */
void check_free(check_t **check);

#endif  // ECGEN_EXHAUSTIVE_CHECK_H