home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Big Green CD 8
/
BGCD_8_Dev.iso
/
NEXTSTEP
/
UNIX
/
Web
/
Servers
/
apache-1.2.4-MIHS
/
original-source
/
src
/
explain.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-11-03
|
308 b
|
15 lines
#include <stdio.h>
#include <stdarg.h>
#include "explain.h"
void _Explain(const char *szFile,int nLine,const char *szFmt,...)
{
va_list vlist;
fprintf(stderr,"%s(%d): ",szFile,nLine);
va_start(vlist,szFmt);
vfprintf(stderr,szFmt,vlist);
va_end(vlist);
fputc('\n',stderr);
}