N
AME
free_string
- free a pike string
S
YNTAX
#include "stralloc.h"
void free_string(struct pike_string *p)
D
ESCRIPTION
This function frees the string 'p'. What it actually does is that it decreases the reference count of 'p' and frees the memory reserved for it if the refereneces reach zero.
N
OTA
B
ENE
free_string is actually a macro
K
EYWORDS
pike_string