mcStringName, mcStringNameArr — Create composite dataset name
#include <memcom.h> char* mcStringName(int n, char* field1, char* field2, ..., char* fieldn); char* mcStringNameArr(int n, const char** farray);
mcStringName
creates a composite string
of the form a.b.c.d
from separate character
fields listed one by one in the argument list. If completed
successfully, the function creates a character array and returns a
pointer to it. If not it returns NULL.
mcStringNameArr
creates a composite string of
the form a.b.c.d
from separate character fields
specified in a character array. If completed successfully, the
function creates a character array and returns a pointer to it. If
not it returns NULL.