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

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