ecacdfa434
format strings: %I IP address %#I IP address in hexadecimal %1I IP address padded to full length %m strerror(errno)
17 lines
339 B
C
17 lines
339 B
C
/*
|
|
* BIRD Library -- String Functions
|
|
*
|
|
* (c) 1998 Martin Mares <mj@ucw.cz>
|
|
*
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
*/
|
|
|
|
#ifndef _BIRD_STRING_H_
|
|
#define _BIRD_STRING_H_
|
|
|
|
#include <stdarg.h>
|
|
|
|
int bsprintf(char *str, const char *fmt, ...);
|
|
int bvsprintf(char *str, const char *fmt, va_list args);
|
|
|
|
#endif
|