home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / grfx_snd / tifflib / source / tif_warn.c < prev    next >
C/C++ Source or Header  |  1992-11-08  |  938b  |  36 lines

  1. #pragma warn -use
  2. static char    *sccsid = "@(#)TIFF/tif_warning.c 1.08, Copyright (c) Sam Leffler, Dieter Linde, "__DATE__;
  3. #pragma warn .use
  4. /*
  5.  * Copyright (c) 1988, 1990 by Sam Leffler, Oct 8 1990
  6.  * All rights reserved.
  7.  *
  8.  * This file is provided for unrestricted use provided that this legend is included on all tape media and as a part of the
  9.  * software program in whole or part.  Users may copy, modify or distribute this file at will.
  10.  *
  11.  * TIFF Library.
  12.  */
  13. #include <stdio.h>
  14. #include "tiffio.h"
  15.  
  16. /****************************************************************************
  17.  *
  18.  */
  19. void
  20. TIFFWarning(
  21.     char     *module, 
  22.     char     *fmt, 
  23.     ...
  24.     )
  25. {
  26.         va_list    ap;
  27.  
  28.         if (module != NULL)
  29.                 fprintf(stderr, "%s: ", module);
  30.         fprintf(stderr, "Warning, ");
  31.         va_start(ap, fmt);
  32.         vfprintf(stderr, fmt, ap);
  33.         va_end(ap);
  34.         fprintf(stderr, ".\n");
  35. }
  36.