DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T d

⟦88cafabb2⟧ TextFile

    Length: 1551 (0x60f)
    Types: TextFile
    Names: »dttime.h«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦653021b30⟧ »EurOpenD3/utils/downtime.tar.Z« 
        └─⟦946c717da⟧ 
            └─⟦this⟧ »dttime.h« 

TextFile

/* 
 * Copyright (c) 1988 Michael A. Cooper, University of Southern California.
 * This program may be used, copied, modified, and redistributed freely
 * for noncommercial purposes, so long as this notice remains intact.
 */

/*
 * $Header: dttime.h,v 4.1 88/07/05 15:59:31 mcooper Exp $
 *------------------------------------------------------------------
 *
 * $Source: /usr/skat3/src/common/usc/etc/downtime/RCS/dttime.h,v $
 * $Revision: 4.1 $
 * $Date: 88/07/05 15:59:31 $
 * $State: Exp $
 *
 *------------------------------------------------------------------
 *
 * Michael A. Cooper
 * Research and Development Group
 * University Computing Services 
 * University of Southern California
 * (mcooper@oberon.USC.EDU)
 *
 *------------------------------------------------------------------
 * $Log:	dttime.h,v $
 * Revision 4.1  88/07/05  15:59:31  mcooper
 * Added copyright notice.
 * 
 * Revision 4.0  88/04/20  15:43:32  mcooper
 * Version 4.
 * 
 * Revision 3.0  87/07/24  14:09:43  mcooper
 * Version 3.
 * 
 * Revision 2.1  87/03/12  14:54:12  mcooper
 * - Added WEEK and WEEKS.
 * - Cleanup.
 * 
 * Revision 2.0  87/03/11  13:44:16  mcooper
 * First version.
 * 
 *------------------------------------------------------------------
 */

/*
 * Set up constants for time
 */
#define SECOND     *1
#define SECONDS    SECOND
#define MINUTE     *60 SECONDS
#define MINUTES    MINUTE
#define HOUR       *60 MINUTES
#define HOURS      HOUR
#define DAY        *24 HOURS
#define DAYS       DAY
#define WEEK       *7 DAYS
#define WEEKS      WEEK