Mentions légales du service

Skip to content
Snippets Groups Projects
Commit e741001d authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Some cleanup on file headers

parent cbc4ab56
No related branches found
No related tags found
No related merge requests found
#ifndef IOHB_H #ifndef _iohb_h_
#define IOHB_H #define _iohb_h_
int readHB_info(const char* filename, int* M, int* N, int* nz, char** Type, int readHB_info(const char* filename, int* M, int* N, int* nz, char** Type,
int* Nrhs); int* Nrhs);
...@@ -52,4 +52,4 @@ int ParseRfmt(char* fmt, int* perline, int* width, int* prec, char* flag); ...@@ -52,4 +52,4 @@ int ParseRfmt(char* fmt, int* perline, int* width, int* prec, char* flag);
void IOHBTerminate(char* message); void IOHBTerminate(char* message);
#endif #endif /* _iohb_h_ */
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
* *
*/ */
#ifndef MM_IO_H #ifndef _mmio_h_
#define MM_IO_H #define _mmio_h_
#define MM_MAX_LINE_LENGTH 1025 #define MM_MAX_LINE_LENGTH 1025
#define MatrixMarketBanner "%%MatrixMarket" #define MatrixMarketBanner "%%MatrixMarket"
...@@ -126,6 +126,4 @@ int mm_read_mtx_crd_entry(FILE *f, int *Itab, int *Jtab, double *real, double *i ...@@ -126,6 +126,4 @@ int mm_read_mtx_crd_entry(FILE *f, int *Itab, int *Jtab, double *real, double *i
int mm_read_unsymmetric_sparse(const char *fname, int *M_, int *N_, int *nz_, int mm_read_unsymmetric_sparse(const char *fname, int *M_, int *N_, int *nz_,
double **val_, int **I_, int **J_); double **val_, int **I_, int **J_);
#endif /* _mmio_h_ */
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment