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 a

⟦85e13718b⟧ TextFile

    Length: 774 (0x306)
    Types: TextFile
    Names: »alias.h«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« 
        └─⟦e5a54fb17⟧ 
            └─⟦this⟧ »pp-5.0/h/alias.h« 

TextFile

/* alias.h: alias structure definition (man page ALIASES(5)) */

/*
 * @(#) $Header: /cs/research/pp/hubris/pp-beta/h/RCS/alias.h,v 5.0 90/09/20 16:49:30 pp Exp Locker: pp $
 *
 * $Log:	alias.h,v $
 * Revision 5.0  90/09/20  16:49:30  pp
 * rcsforce : 5.0 public release
 * 
 *
 */



#ifndef _H_ALIAS
#define _H_ALIAS



#define _H_ALIAS_MAX                    80



typedef struct  alias_struct {
	int             alias_type;

#define         ALIAS_822               1
#define         ALIAS_X400              2
#define         ALIAS_SYNONYM           3
#define         ALIAS_PROPER            4
#define		ALIAS_822_SYNONYM	5
#define		ALIAS_X400_SYNONYM	6
	char            alias_user[_H_ALIAS_MAX];
} ALIAS;


#define NULLALIAS                       ((ALIAS *)0)




#endif