NetBurner 3.5.6
PDF Version
fdprintf.h
1/*NB_REVISION*/
2
3/*NB_COPYRIGHT*/
4
184#ifndef FD_PRINTF
185#define FD_PRINTF
186
187#include <stdarg.h>
188
263int fdprintf(int fd, const char *format, ...);
264
341int fdiprintf(int fd, const char *format, ...);
342
442int vfdprintf(int fd, const char *format, va_list args);
443
554int vfdiprintf(int fd, const char *format, va_list args);
555
556#endif // FD_PRINTF
557
558 // End of groupFdprintf
int fdprintf(int fd, const char *format,...)
Print formatted output to a file descriptor.
int fdiprintf(int fd, const char *format,...)
Print formatted output to a file descriptor (integer-only, no float)
int vfdiprintf(int fd, const char *format, va_list args)
Print formatted output to a file descriptor using va_list (integer-only)
int vfdprintf(int fd, const char *format, va_list args)
Print formatted output to a file descriptor using va_list.