char ch_cap ( char c ); bool ch_eqi ( char c1, char c2 ); int ch_to_digit ( char c ); double *dtable_data_read ( char *input_filename, int m, int n ); void dtable_data_write ( ofstream &output, int m, int n, double table[] ); void dtable_header_read ( char *input_filename, int *m, int *n ); void dtable_header_write ( char *output_filename, ofstream &output, int m, int n ); void fem_data_read ( char *node_coord_file_name, char *element_file_name, char *node_data_file_name, int dim_num, int node_num, int element_num, int element_order, int node_data_num, double **node_coord, int **element_node, double **node_data ); void fem_header_print ( int dim_num, int node_num, int element_num, int element_order, int node_data_num ); void fem_header_read ( char *node_coord_file_name, char *element_file_name, char *node_data_file_name, int *dim_num, int *node_num, int *element_num, int *element_order, int *node_data_num ); void fem_write ( char *node_coord_file_name, char *element_file_name, char *node_data_file_name, int dim_num, int node_num, int element_num, int element_order, int node_data_num, double node_coord[], int element_node[], double node_data[] ); int file_column_count ( char *input_filename ); int file_row_count ( char *input_filename ); int i4_max ( int i1, int i2 ); int i4_min ( int i1, int i2 ); void i4mat_transpose_print ( int m, int n, int a[], char *title ); void i4mat_transpose_print_some ( int m, int n, int a[], int ilo, int jlo, int ihi, int jhi, char *title ); int *itable_data_read ( char *input_filename, int m, int n ); void itable_data_write ( ofstream &output, int m, int n, int table[] ); void itable_header_read ( char *input_filename, int *m, int *n ); void itable_header_write ( char *output_filename, ofstream &output, int m, int n ); double r8_epsilon ( void ); void r8mat_transpose_print ( int m, int n, double a[], char *title ); void r8mat_transpose_print_some ( int m, int n, double a[], int ilo, int jlo, int ihi, int jhi, char *title ); void s_blank_delete ( char *s ); int s_len_trim ( char *s ); int s_to_i4 ( char *s, int *last, bool *error ); bool s_to_i4vec ( char *s, int n, int ivec[] ); double s_to_r8 ( char *s, int *lchar, bool *error ); bool s_to_r8vec ( char *s, int n, double rvec[] ); int s_word_count ( char *s ); void timestamp ( void ); char *timestring ( void );