Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / fileio / mtxio.h
index 1d9a8bbef630e46bd7c42805b123f13dd9d9f989..651972c50358af05d91e19565372552923d43681 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
- * Copyright (c) 2012,2014,2018, by the GROMACS development team, led by
+ * Copyright (c) 2012,2014,2018,2019, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
  * EITHER a pointer to a full storage matrix or a sparse storage
  * matrix. If both pointers are non-NULL a fatal error will occur.
  */
-void
-gmx_mtxio_write(const char *             filename,
-                int                      nrow,
-                int                      ncol,
-                real *                   full_matrix,
-                gmx_sparsematrix_t *     sparse_matrix);
+void gmx_mtxio_write(const char* filename, int nrow, int ncol, real* full_matrix, gmx_sparsematrix_t* sparse_matrix);
 
 
 /* Read a matrix from file.
@@ -71,11 +66,6 @@ gmx_mtxio_write(const char *             filename,
  * To determine the format you should set *full_matrix and *sparse_matrix to NULL
  * before calling this routine, and check which one is non-NULL on return.
  */
-void
-gmx_mtxio_read (const char *            filename,
-                int *                   nrow,
-                int *                   ncol,
-                real **                 full_matrix,
-                gmx_sparsematrix_t **   sparse_matrix);
+void gmx_mtxio_read(const char* filename, int* nrow, int* ncol, real** full_matrix, gmx_sparsematrix_t** sparse_matrix);
 
 #endif