* Deprecation Warning:
* strcpy() is being deprecated. Please use strlcpy() instead.
*/
-
+#if !CONFIG_EMBEDDED
char *
strcpy(
char *to,
return ret;
}
-
+#endif
/*
* Abstract:
* Deprecation Warning:
* strcat() is being deprecated. Please use strlcat() instead.
*/
+#if !CONFIG_EMBEDDED
char *
strcat(
char *dest,
;
return (old);
}
+#endif
/*
* Appends src to string dst of size siz (unlike strncat, siz is the
* one should use FREE() with the allocated buffer.
*
*/
-inline char *
+char *
STRDUP(const char *string, int type)
{
size_t len;