home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
APDL Public Domain 1
/
APDL_PD1A.iso
/
program
/
c
/
c_utils
/
C_Utils
/
C
/
Message
< 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
Text File
|
1991-05-12
|
269 b
|
15 lines
/* C.Message: general message printer */
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include "utils.h"
void message (const char *format, ...)
{
va_list ap;
va_start(ap,format);
vfprintf(stderr,format,ap);
va_end(ap);
}