/*
* Copyright (c) 2004 Sendmail, Inc. and its suppliers.
* All rights reserved.
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*
* $Id: units.h,v 1.3 2005/06/09 23:34:38 ca Exp $
*/
#ifndef SM_UNITS_H
#define SM_UNITS_H 1
#include "sm/generic.h"
/* scale values to get different units */
/* base: Bytes */
#define UNIT_BYTES
#define UNIT_KBYTES *1024
#define UNIT_MBYTES *1024*1024
#define UNIT_GBYTES *1024*1024*1024
/* base: Kilo Bytes */
#define UNIT_KB
#define UNIT_MB *1024
#define UNIT_GB *1024*1024
/* base: seconds */
#define UNIT_SECONDS
#define UNIT_MINUTES *60
#define UNIT_HOURS *60*60
#define UNIT_DAYS *60*60*24
#define UNIT_WEEKS *60*60*24*7
#endif /* SM_UNITS_H */
syntax highlighted by Code2HTML, v. 0.9.1