16 lines
253 B
C
16 lines
253 B
C
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
void print_err(const char *format, ...)
|
|
{
|
|
va_list args;
|
|
|
|
dprintf(2, "ft_ping: ");
|
|
va_start(args, format);
|
|
vdprintf(2, format, args);
|
|
va_end(args);
|
|
write(2, "\n", 1);
|
|
} |