|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 347 (0x15b) Types: TextFile Names: »chext.SYS_V.c«
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89 └─⟦this⟧ »./tex82/Unsupported/MFpxl/mflib/chext.SYS_V.c« └─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦beba6c409⟧ »unix3.0/Unsupported.tar.Z« └─⟦25c524ae4⟧ └─⟦this⟧ »Unsupported/MFpxl/mflib/chext.SYS_V.c«
#include <stdio.h> #include "h00vars.h" bytewrite(curfile, i) register struct iorec *curfile; short i; { if (curfile->funit & FREAD) { ERROR("%s: Attempt to write, but open for reading\n", curfile->fname); return; } putc(i, curfile->fbuf); if (ferror(curfile->fbuf)) { PERROR("Could not write to ", curfile->fname); return; } }