Esempio n. 1
0
void MUMPS_CALL
MUMPS_OOC_GET_NB_FILES_C(const MUMPS_INT *type,MUMPS_INT *nb_files)
{
  int type_loc,nb_files_loc;
  type_loc=(int)*type;
  mumps_io_get_nb_files(&nb_files_loc,&type_loc);
  *nb_files=(MUMPS_INT)nb_files_loc;
  return;
}
Esempio n. 2
0
void MUMPS_CALL
MUMPS_OOC_GET_NB_FILES_C(const int* type,int* nb_files)
{
  mumps_io_get_nb_files(nb_files,type);
  return;
}