1998-06-17 22:31:36 +08:00
|
|
|
/*
|
|
|
|
* 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>
|
2000-04-01 07:30:21 +08:00
|
|
|
#include <string.h>
|
2012-08-14 22:25:22 +08:00
|
|
|
#include <strings.h>
|
1998-06-17 22:31:36 +08:00
|
|
|
|
|
|
|
int bsprintf(char *str, const char *fmt, ...);
|
|
|
|
int bvsprintf(char *str, const char *fmt, va_list args);
|
1998-11-17 05:40:35 +08:00
|
|
|
int bsnprintf(char *str, int size, const char *fmt, ...);
|
|
|
|
int bvsnprintf(char *str, int size, const char *fmt, va_list args);
|
1998-06-17 22:31:36 +08:00
|
|
|
|
2013-10-06 02:12:28 +08:00
|
|
|
int buffer_vprint(buffer *buf, const char *fmt, va_list args);
|
|
|
|
int buffer_print(buffer *buf, const char *fmt, ...);
|
|
|
|
void buffer_puts(buffer *buf, const char *str);
|
|
|
|
|
1998-11-29 22:47:24 +08:00
|
|
|
int patmatch(byte *pat, byte *str);
|
|
|
|
|
1998-06-17 22:31:36 +08:00
|
|
|
#endif
|