home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 8 / CDACTUAL8.iso / share / os2 / varios / apache / explain.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-30  |  308 b   |  15 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3. #include "explain.h"
  4.  
  5. void _Explain(const char *szFile,int nLine,const char *szFmt,...)
  6.     {
  7.     va_list vlist;
  8.  
  9.     fprintf(stderr,"%s(%d): ",szFile,nLine);
  10.     va_start(vlist,szFmt);
  11.     vfprintf(stderr,szFmt,vlist);
  12.     va_end(vlist);
  13.     fputc('\n',stderr);
  14.     }
  15.