FACT++  1.0
static void my__strlcpy ( char *  dest,
const char *  src,
size_t  size 
)
static

Definition at line 79 of file palVers.c.

Referenced by palVers().

79  {
80 # if HAVE_STRLCPY
81  strlcpy( dest, src, size );
82 # else
83  strncpy( dest, src, size );
84  dest[size-1] = '\0';
85 # endif
86 }
int size
Definition: db_dim_server.c:17

+ Here is the caller graph for this function: