/* loader.h $Id: loader.h,v 1.2 2005/12/30 03:28:22 dmochiha Exp $ */ #ifndef __LOADER_H__ #define __LOADER_H__ #define LINEBUFSIZ 65536 /* 64 KB */ extern double *load_vector (char *file, int *dims); extern double **load_matrix (char *file, int *rows, int *cols); extern double **load_matrix_transposed (char *file, int *rows, int *cols); extern void matrix_dimensions (char *file, int *rows, int *cols); #endif