aboutsummaryrefslogtreecommitdiff
path: root/src/math/poly.h
diff options
context:
space:
mode:
authorJ08nY2017-02-15 21:52:32 +0100
committerJ08nY2017-02-15 21:52:32 +0100
commit5d9d12811441930169b0517318dcf21c51b72e2d (patch)
treebb7f4ed92f5fd9a253c238519525dae93896786f /src/math/poly.h
parent4190b8e35a781a08f1749448f51cb4ea798f5588 (diff)
downloadecgen-5d9d12811441930169b0517318dcf21c51b72e2d.tar.gz
ecgen-5d9d12811441930169b0517318dcf21c51b72e2d.tar.zst
ecgen-5d9d12811441930169b0517318dcf21c51b72e2d.zip
Added some docs + Doxyfile
Diffstat (limited to 'src/math/poly.h')
-rw-r--r--src/math/poly.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/math/poly.h b/src/math/poly.h
index 990c818..c69313f 100644
--- a/src/math/poly.h
+++ b/src/math/poly.h
@@ -2,13 +2,16 @@
* ecgen, tool for generating Elliptic curve domain parameters
* Copyright (C) 2017 J08nY
*/
+/**
+ * @file poly.h
+ */
#ifndef ECGEN_POLY_H
#define ECGEN_POLY_H
#include <pari/pari.h>
#include <stdbool.h>
-typedef struct polynomial {
+typedef struct polynomial_t {
int m;
int e1;
int e2;