blob: 832a2921172026307e387a85b857fd7e6fb53b17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* 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) ;
stralloc_free(&info->modifs) ;
}
|