You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
simulacion-permeabilidad/fftma_module/gen/sources/testopenfile.c

17 lines
255 B
C

#include <stdio.h>
#include <stddef.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <math.h>
void testopenfile(FILE *fp)
{
if (fp == NULL)
{
printf("Erreur d'ouverture de fichier\n");
exit(0);
}
return;
}