NAME
salloc - allocate and copy string

SYNOPSIS
char *salloc (original)
const char *original;

DESCRIPTION
Salloc will create a copy of a string by allocating a new block of
storage, copying the argument into the new block, and returning a
pointer to the new string.

SEE ALSO
malloc(3), string(3)

DIAGNOSTICS
Returns 0 if the malloc fails (not enough storage available).