home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 1
/
ARM_CLUB_CD.iso
/
contents
/
apps
/
clib
/
progs
/
utilslib
/
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);
}