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 l

⟦d601f3dc6⟧ TextFile

    Length: 525 (0x20d)
    Types: TextFile
    Names: »loc_user.h«

Derivation

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

TextFile

/* loc_user.h: information about a local user*/

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



#ifndef _H_LOC_USER
#define _H_LOC_USER

typedef struct  loc_user {
	int	uid;
	int	gid;

	char	*username;

	char	*directory;
	char	*mailbox;
	char	*shell;
	char	*home;
} LocUser;

extern LocUser	*tb_getlocal ();
extern void	free_loc_user ();

#endif