1
0
mirror of https://github.com/bgp/bgpq4.git synced 2024-05-11 05:55:05 +00:00
bgp-bgpq4/sx_slentry.c
2019-12-30 20:55:38 +01:00

37 lines
515 B
C

#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include "sx_slentry.h"
struct sx_slentry*
sx_slentry_new(char* t)
{
struct sx_slentry* e = malloc(sizeof(struct sx_slentry));
if (!e)
return NULL;
memset(e, 0, sizeof(struct sx_slentry));
if (t)
e->text = strdup(t);
return e;
}
struct sx_tentry*
sx_tentry_new(char* t)
{
struct sx_tentry* te = malloc(sizeof(struct sx_tentry));
if (!te)
return NULL;
memset(te, 0, sizeof(struct sx_tentry));
te->text = strdup(t);
return te;
}