diff --git a/src/ascii_poly.c b/src/ascii_poly.c index d4c793c..33a129f 100644 --- a/src/ascii_poly.c +++ b/src/ascii_poly.c @@ -19,6 +19,13 @@ * MA 02110-1301 USA */ +/** + * @file ascii_poly.c + * This file allows to convert between ascii strings + * and polynomials. + * @brief asci->poly and poly->ascii + */ + #include "common.h" #include "context.h" #include "mem.h" diff --git a/src/ascii_poly.h b/src/ascii_poly.h index 44cc22e..fc15bf0 100644 --- a/src/ascii_poly.h +++ b/src/ascii_poly.h @@ -19,6 +19,12 @@ * MA 02110-1301 USA */ +/** + * @file ascii_poly.h + * Header for the internal API of ascii_poly.c. + * @brief header for ascii_poly.c + */ + #ifndef ASCII_POLY_H_ #define ASCII_POLY_H_