|
@@ -77,6 +77,13 @@ int strcmp(const char *s1, const char *s2)
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
+#ifdef L_strcoll
|
|
|
+int strcoll(const char *s1, const char *s2)
|
|
|
+{
|
|
|
+ return( strcmp(s1, s2));
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
|
|
|
|
|
|
#ifdef L_strncat
|
|
@@ -113,6 +120,13 @@ char *strncpy(char *dst, const char *src, size_t len)
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
+#ifdef L_strxfrm
|
|
|
+char *strncpy(char *dst, const char *src, size_t len)
|
|
|
+{
|
|
|
+ return( strncpy( dst, src, len));
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
|
|
|
|
|
|
#ifdef L_strncmp
|