This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/vprintf.c

20 lines
289 B
C

#include <stdio.h>
#include <stdarg.h>
void errmsg( char *format, ... )
{
va_list arglist;
printf( "Error: " );
va_start( arglist, format );
vprintf( format, arglist );
va_end( arglist );
}
void main()
{
errmsg( "%s %d %s", "Failed", 100, "times" );
}