diff options
| author | J08nY | 2017-03-01 11:33:16 +0100 |
|---|---|---|
| committer | J08nY | 2017-03-01 11:33:16 +0100 |
| commit | fdd2bbaf35270c5ab63bf3c601ab199f2092ab2c (patch) | |
| tree | 6bb9eec9d4608545ec6bc61056061f7e92d7c409 /src/math/arg.h | |
| parent | 8c230aa00002b57d47160756a183d65fb895a7b4 (diff) | |
| download | ecgen-fdd2bbaf35270c5ab63bf3c601ab199f2092ab2c.tar.gz ecgen-fdd2bbaf35270c5ab63bf3c601ab199f2092ab2c.tar.zst ecgen-fdd2bbaf35270c5ab63bf3c601ab199f2092ab2c.zip | |
Diffstat (limited to 'src/math/arg.h')
| -rw-r--r-- | src/math/arg.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/math/arg.h b/src/math/arg.h index 65ea311..55e1b19 100644 --- a/src/math/arg.h +++ b/src/math/arg.h @@ -2,7 +2,24 @@ * ecgen, tool for generating Elliptic curve domain parameters * Copyright (C) 2017 J08nY */ +/** + * @file arg.h + */ #ifndef ECGEN_ARG_H #define ECGEN_ARG_H +#include "types.h" + +/** + * @brief + * @return + */ +arg_t *arg_new(); + +/** + * @brief + * @param arg + */ +void arg_free (arg_t **arg); + #endif // ECGEN_ARG_H |
