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 - download
Index: ┃ T X

⟦09d88b6e2⟧ TextFile

    Length: 714 (0x2ca)
    Types: TextFile
    Names: »XMakePattern.c«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦526ad3590⟧ »EUUGD11/gnu-31mar87/X.V10.R4.tar.Z« 
        └─⟦2109abc41⟧ 
            └─ ⟦this⟧ »./X.V10R4/Xlib/XMakePattern.c« 

TextFile

/* $Header: XMakePattern.c,v 1.1 86/04/22 15:15:16 jg Rel $ */

/* 
 * XMakePattern.c - Substitute for macro in the library
 * 
 * Author:	Scott Nettles
 * 		Digital Equipment Corporation
 * 		Western Research Laboratory
 * Date:	Sat Aug 24 1985
 */

/* $Log:	XMakePattern.c,v $
 * Revision 1.1  86/04/22  15:15:16  jg
 * Changes to hide protocol better for BIGSHORTS
 * 
 * Revision 1.1  85/12/05  13:34:57  nettles
 * Initial revision
 *  */

static char rcs_ident[] = "$Header: XMakePattern.c,v 1.1 86/04/22 15:15:16 jg Rel $";

typedef long Pattern;

Pattern XMakePattern(pattern, patlen, patmul)
int	pattern, patlen, patmul;
{
    return	((Pattern)(((patmul) << 20) | (((patlen) - 1) << 16) | (pattern) ));
}