Removed now unused function util.c:strcopy()

This commit is contained in:
Thomas Schmitt 2009-10-08 13:29:27 +02:00
parent 0ab2b8260c
commit 78308eea24
1 changed files with 0 additions and 28 deletions

View File

@ -1381,33 +1381,6 @@ int iso_eaccess(const char *path)
return ISO_SUCCESS;
}
#ifdef NIX
/* <<< Buggy and not used any more */
char *strcopy(const char *buf, size_t len)
{
char *str;
str = malloc((len + 1) * sizeof(char));
if (str == NULL) {
return NULL;
}
strncpy(str, buf, len);
str[len] = '\0';
/* remove trailing spaces
(This leaves the space at str[0] existing. Bug or feature ?)
*/
for (len = len-1; str[len] == ' ' && len > 0; --len)
str[len] = '\0';
return str;
}
#endif /* NIX */
char *iso_util_strcopy(const char *buf, size_t len)
{
char *str;
@ -1421,7 +1394,6 @@ char *iso_util_strcopy(const char *buf, size_t len)
return str;
}
char *iso_util_strcopy_untail(const char *buf, size_t len)
{
char *str;