|
|
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: 389 (0x185)
Types: TextFile
Names: »fempty.c«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
└─⟦e7f64e0c0⟧ »EurOpenD3/mail/vmh.tar.Z«
└─⟦dcb95597f⟧
└─⟦this⟧ »fempty.c«
#ifndef lint
static char rcsid[] =
"$Header: fempty.c,v 2.2 86/02/08 20:59:36 deboor Exp $";
static char notice[] =
"This program is in the public domain and is available for unlimited \
distribution as long as this notice is enclosed.";
#endif
#include <stdio.h>
fempty(p)
FILE *p;
{
if (p->_cnt>0)
return(0); /* If any in buf, return false */
return(empty(fileno(p)));
}