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 m

⟦d04c508da⟧ TextFile

    Length: 856 (0x358)
    Types: TextFile
    Names: »musub.c«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« 
        └─⟦e5a54fb17⟧ 
            └─⟦this⟧ »pp-5.0/doc/manual/volume1/musub.c« 

TextFile

io_init(rp);      /* initialisation */
io_wprm(&prm,rp); /* write management parameters */
io_wrq(&q,rp);    /* per message parameters */

ap = ad_originator;             /* originator */
io_wadr(ap,AD_ORIGINATOR,rp);
ap = ad_recipient;
do {                            /* list of recipients */
    io_wadr(ap,AD_RECIPIENT,rp);
    ap = ap->ad_next;
    } while ( ap != NULL );
io_adend(rp);                   /* terminate address list */

if((p=next_arg("body",argv)) != NULL) {
    io_tinit(rp);               /* prepare for body part(s) */
    do {
        io_tpart(p,FALSE,rp);   /* prepare one body part */
        loop_data(p);           /* transmit with io_tdata() */
        io_tdend(rp);           /* end one file */
    } while(p=next_arg("body",argv));
}
io_tend(rp));   /* complete message */
io_end(type);   /* terminate session with submit */