blob: 4d9dde37a5a6efc3e835954db7e7018bbae56442 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* ISC license. */
#include <skalibs/stralloc.h>
#include "exlsn.h"
void exlsn_free (exlsn_t *info)
{
stralloc_free(&info->vars) ;
stralloc_free(&info->values) ;
stralloc_free(&info->data) ;
}
|