32int x_puts(
const char *str,
bool newline);
87int x_putsd(
int fd,
const char *str,
bool newline);
int x_printf(const char *format,...)
put a formated string to stdout (nothing if format = 0)
int x_puts(const char *str, bool newline)
put str to stdout (nothing if str = 0)
int x_dprintf(int fd, const char *format,...)
Print to fd the str format and put newline if bool true.
int x_putsd(int fd, const char *str, bool newline)
Print to fd the str and put newline if bool true.
int x_putcd(int fd, char c, bool newline)
Print to fd the c and put newline if bool true.
char * x_vsprintf(const char *format, va_list ap)
same as x_sprintf but take a va_list
char * x_sprintf(const char *format,...)
like printf but not output the string to stdout, put it in a string
int x_putc(char c, bool newline)
put c to stdout