From 59e93e32687e6fd147e86e8d40ea171b3bf6f8ea Mon Sep 17 00:00:00 2001
From: Mathieu Faverge <mathieu.faverge@inria.fr>
Date: Thu, 29 Sep 2016 23:21:46 +0200
Subject: [PATCH] Keep going on the documentation

---
 spm_io.c | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/spm_io.c b/spm_io.c
index b3b8abec..0f5c3681 100644
--- a/spm_io.c
+++ b/spm_io.c
@@ -417,6 +417,26 @@ csc_load( pastix_int_t  *n,
     return PASTIX_SUCCESS;
 }
 
+/**
+ *******************************************************************************
+ *
+ * @ingroup pastix_spm
+ *
+ * @brief Load the spm structure from a file (internal format)
+ *
+ * Load the spm data structure from a file store in an internal format. For now
+ * this function only load a simple csc matrix.
+ *
+ *******************************************************************************
+ *
+ * @param[in,out] spm
+ *          On entry, an allocated spm data structure.
+ *          On exit, the spm filled with the information read in the file
+ *
+ * @param[in] infile
+ *          The opened file in which the spm is stored.
+ *
+ *******************************************************************************/
 int
 spmLoad( pastix_spm_t  *spm,
          FILE          *infile )
@@ -487,6 +507,25 @@ csc_save( pastix_int_t  n,
     return PASTIX_SUCCESS;
 }
 
+/**
+ *******************************************************************************
+ *
+ * @ingroup pastix_spm
+ *
+ * @brief Save the spm structure into a file (internal format)
+ *
+ * Save the spm data structure into a file and stored in an internal format. For
+ * now this function only save a simple csc matrix.
+ *
+ *******************************************************************************
+ *
+ * @param[in,out] spm
+ *          The sparse matrix to write into the file.
+ *
+ * @param[in] outfile
+ *          The opened file in which to store the spm.
+ *
+ *******************************************************************************/
 int
 spmSave( pastix_spm_t *spm,
          FILE         *outfile )
-- 
GitLab