New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 774 for trunk/AGRIF/LIB/UtilFile.c – NEMO

Ignore:
Timestamp:
2007-12-18T17:45:53+01:00 (16 years ago)
Author:
rblod
Message:

Update Agrif, see ticket:#39

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/AGRIF/LIB/UtilFile.c

    r663 r774  
    3131/* knowledge of the CeCILL-C license and that you accept its terms.           */ 
    3232/******************************************************************************/ 
    33 /* version 1.6                                                                */ 
     33/* version 1.7                                                                */ 
    3434/******************************************************************************/ 
    3535#include <stdio.h> 
     
    4646FILE * associate (char *filename) 
    4747{ 
    48   char filefich[LONGNOM]; 
     48  char filefich[LONG_C]; 
    4949  sprintf(filefich,"%s/%s",nomdir,filename); 
    5050  return fopen (filefich, "w"); 
     
    5959FILE * associateaplus (char *filename) 
    6060{ 
    61   char filefich[LONGNOM]; 
     61  char filefich[LONG_C]; 
    6262  sprintf(filefich,"%s/%s",nomdir,filename); 
    6363  return fopen (filefich, "a+"); 
Note: See TracChangeset for help on using the changeset viewer.