DataMuseum.dk

Presents historical artifacts from the history of:

CP/M

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about CP/M

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦74979c2db⟧ TextFile

    Length: 768 (0x300)
    Types: TextFile
    Names: »STDIO«

Derivation

└─⟦4dd5d59b6⟧ Bits:30003303 Mix C version 2.1 og debugger til RC703
    └─ ⟦this⟧ »STDIO« 
└─⟦b6190e06c⟧ Bits:30003304 Mix C version 2.1 til RC703
└─⟦b6190e06c⟧ Bits:30005327 Mix C version 2.1 til RC703
    └─ ⟦this⟧ »STDIO« 

TextFile

/******************* Standard I/O Header ***********************/

#define     MAXFILES    20
#define     BUFSIZ      512
#define     EOF         -1
#define     NULL        0
#define     stdin       _iobÆ0Å
#define     stdout      _iobÆ1Å
#define     stderr      _iobÆ2Å
#define     getchar()   getc(stdin)
#define     putchar(c)  putc(c,stdout)

typedef struct æ
    char    fileÆ32Å;  /* file descriptor */
    int     fd;        /* file descriptor number */
å FILE;

extern      FILE        *_iobÆMAXFILESÅ;

typedef struct æ
    int     length;
    char    stringÆ80Å;
å STRING;

/***************************************************************/

«eof»