N
AME
begin_shared_string
- allocate space for a shared string
S
YNTAX
#include "stralloc.h"
struct pike_string *begin_shared_string(INT32
len
);
D
ESCRIPTION
This function allocates space for a shared string of length 'len'. You should then MEMCPY 'len' bytes into the s->str. (s being the returned value) And then call end_shared_string.
K
EYWORDS
pike_string
S
EE
A
LSO
end_shared_string
and
make_shared_string