1998-06-17 14:31:36 +00: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-03-31 23:30:21 +00:00
|
|
|
#include <string.h>
|
2012-08-14 14:25:22 +00:00
|
|
|
#include <strings.h>
|
1998-06-17 14:31:36 +00:00
|
|
|
|
2016-11-16 11:10:34 +00:00
|
|
|
#include "lib/resource.h"
|
|
|
|
|
1998-06-17 14:31:36 +00:00
|
|
|
int bsprintf(char *str, const char *fmt, ...);
|
|
|
|
int bvsprintf(char *str, const char *fmt, va_list args);
|
1998-11-16 21:40:35 +00: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 14:31:36 +00:00
|
|
|
|
2013-10-05 18:12:28 +00: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);
|
|
|
|
|
2015-11-24 12:52:26 +00:00
|
|
|
int patmatch(const byte *pat, const byte *str);
|
1998-11-29 14:47:24 +00:00
|
|
|
|
2016-04-07 10:20:45 +00:00
|
|
|
static inline char *xbasename(const char *str)
|
|
|
|
{
|
|
|
|
char *s = strrchr(str, '/');
|
|
|
|
return s ? s+1 : (char *) str;
|
|
|
|
}
|
|
|
|
|
2016-11-01 10:37:49 +00:00
|
|
|
static inline char *
|
|
|
|
xstrdup(const char *c)
|
|
|
|
{
|
|
|
|
size_t l = strlen(c) + 1;
|
|
|
|
char *z = xmalloc(l);
|
|
|
|
memcpy(z, c, l);
|
|
|
|
return z;
|
|
|
|
}
|
|
|
|
|
2016-11-16 11:10:34 +00:00
|
|
|
static inline char *
|
|
|
|
lp_strdup(linpool *lp, const char *c)
|
|
|
|
{
|
|
|
|
size_t l = strlen(c) + 1;
|
|
|
|
char *z = lp_allocu(lp, l);
|
|
|
|
memcpy(z, c, l);
|
|
|
|
return z;
|
|
|
|
}
|
|
|
|
|
2016-10-26 14:07:45 +00:00
|
|
|
static inline void
|
|
|
|
memset32(void *D, u32 val, uint n)
|
|
|
|
{
|
|
|
|
u32 *dst = D;
|
|
|
|
uint i;
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
dst[i] = val;
|
|
|
|
}
|
|
|
|
|
2016-04-28 16:01:40 +00:00
|
|
|
#define ROUTER_ID_64_LENGTH 23
|
|
|
|
|
1998-06-17 14:31:36 +00:00
|
|
|
#endif
|