rename strc{py,at}_truncate to strlc{py,at}

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@6979 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1999-09-16 19:31:18 +00:00
parent 78c514500c
commit a5497bbd0d

View File

@@ -214,12 +214,12 @@ char *strtok_r(char *s1, const char *s2, char **lasts);
char * strupr(char *);
#endif
#ifndef HAVE_STRCPY_TRUNCATE
int strcpy_truncate (char *dst, const char *src, size_t dst_sz);
#ifndef HAVE_STRLCPY
size_t strlcpy (char *dst, const char *src, size_t dst_sz);
#endif
#ifndef HAVE_STRCAT_TRUNCATE
int strcat_truncate (char *dst, const char *src, size_t dst_sz);
#ifndef HAVE_STRLCAT
size_t strlcat (char *dst, const char *src, size_t dst_sz);
#endif
#ifndef HAVE_GETDTABLESIZE