/*--------------------------------------------------------------------------- File name : is_rename_engine.h Author : Y. Jung Created on : January 2001 Description : Renaming related functions *--------------------------------------------------------------------------*/ /* $Id: is_rename_engine.h,v 1.4 2001/11/21 15:58:37 yjung Exp $ $Author: yjung $ $Date: 2001/11/21 15:58:37 $ $Revision: 1.4 $ */ #ifndef _IS_RENAME_ENGINE_H_ #define _IS_RENAME_ENGINE_H_ /*--------------------------------------------------------------------------- Defines ---------------------------------------------------------------------------*/ #define ISAAC_CHANGE_DAY_HOUR 18 /*--------------------------------------------------------------------------- Function prototypes ---------------------------------------------------------------------------*/ /*-------------------------------------------------------------------------*/ /** @name isaac_compute_product_name @memo Find out the new file name by checking the header @param filename old file name @param archive Flag to use the archive name for renaming @param origfile Flag to use the origfile for renaming @param ref_name File used in option to compute a new_name (optional) @return The new file name @doc The rules used to compute the new file name are implemented here. */ /*--------------------------------------------------------------------------*/ char * isaac_compute_product_name( char * filename, int archive, int origfile, char * ref_name) ; #endif