#include "WorkingDialog.h"
char *SaCopyString(char *str);
str
argument. If str
is NULL, SaCopyString
returns an empty string ("\0"). The return value is malloc'd data and must be free'd with the free function.
str
argument. SaCopyString handles the NULL condition by allocating a string of length 1 and setting it equal to "\0".