aboutsummaryrefslogtreecommitdiff
path: root/src/exhaustive/check.h
blob: 62416a8dab2c0ec3771957df1c9191e87b45306a (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 J08nY
 */
/**
 * @file check.h
 */
#ifndef ECGEN_CHECK_H
#define ECGEN_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_CHECK_H