From 566894b230a5581bf18f5e4b5cddbe688a7ddddd Mon Sep 17 00:00:00 2001 From: hasufell Date: Sun, 25 May 2014 20:50:12 +0200 Subject: [PATCH] ASCII->POLY: add file/brief doxygen comment --- src/ascii_poly.c | 7 +++++++ src/ascii_poly.h | 6 ++++++ 2 files changed, 13 insertions(+) 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_