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

⟦eee90ef86⟧ TextFile

    Length: 236 (0xec)
    Types: TextFile
    Names: »getstri.c«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Empire.V/V1.1/EMPSUBS/getstri.c« 

TextFile

char *
getstri(prompt)
char    *prompt;
{
        static char     buf[512], nxtbuf = 0;

        nxtbuf = (nxtbuf + 1) & 03;
        if( prmptrd(prompt, &buf[nxtbuf<<7], 128) == 0 ) return((char *)0);
        return(&buf[nxtbuf<<7]);
}