aboutsummaryrefslogtreecommitdiff
path: root/src/base/string/free.c
blob: 7e0301b7f9b05bdde246b866f8c2c50453094184 (plain)
1
2
3
4
5
6
7
8
#include "internal.h"

// free returns memory associated to the buffer.
void
stringยทfree(string s)
{
    free(s - sizeof(Hdr));
}