/*-------------------------------------------------------------------------*/ /** @file static_sz.h @author N. Devillard @date Dec 1999 @version $Revision: 1.5 $ @brief Definitions for various fixed sizes. */ /*--------------------------------------------------------------------------*/ /* $Id: static_sz.h,v 1.5 2001/10/22 14:57:50 ndevilla Exp $ $Author: ndevilla $ $Date: 2001/10/22 14:57:50 $ $Revision: 1.5 $ */ #ifndef _STATIC_SZ_H_ #define _STATIC_SZ_H_ #ifdef __cplusplus extern "C" { #endif /*--------------------------------------------------------------------------- Defines ---------------------------------------------------------------------------*/ /** Maximum supported file name size */ #define FILENAMESZ 512 /** Maximum number of characters per line in an ASCII file */ #define ASCIILINESZ 1024 #ifdef __cplusplus } #endif #endif