home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / clib / progs / utilslib / c / Message < prev    next >
Encoding:
Text File  |  1991-05-12  |  269 b   |  15 lines

  1. /* C.Message: general message printer */
  2.  
  3. #include <stdarg.h>
  4. #include <stdlib.h>
  5. #include <stdio.h>
  6. #include "utils.h"
  7.  
  8. void message (const char *format, ...)
  9. {
  10.         va_list ap;
  11.         va_start(ap,format);
  12.         vfprintf(stderr,format,ap);
  13.         va_end(ap);
  14. }
  15.