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 g

⟦23167df62⟧ TextFile

    Length: 647 (0x287)
    Types: TextFile
    Names: »grp.h«

Derivation

└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦cc8755de2⟧ »./libg++-1.36.1.tar.Z« 
        └─⟦23757c458⟧ 
            └─⟦this⟧ »libg++/g++-include/grp.h« 

TextFile


#ifndef grp_h
#pragma once

#include <stdio.h>

extern "C" {
#define getgrent c_proto_getgrent
#define getgrgid c_proto_getgrgid
#define getgrnam c_proto_getgrnam
#define setgrent c_proto_setgrent
#define endgrent c_proto_endgrent
#define fgetgrent c_proto_fgetgrent

#define KERNEL

#include "//usr/include/grp.h"

#ifndef grp_h
#define grp_h 1
#endif

#undef getgrent
#undef getgrgid
#undef getgrnam
#undef KERNEL

extern struct group* getgrent();
extern struct group* fgetgrent(FILE*);
extern struct group* getgrgid(int);
extern struct group* getgrnam(const char*);
extern void          setgrent();
extern void          endgrent();

}

#endif