]> Pileus Git - ~andy/fetchmail/blobdiff - strlcat.c
Add Esperanto-language translation.
[~andy/fetchmail] / strlcat.c
index fe3ec1058d1e69fd233e687063332a45a711d2a0..0af16670e01eb25b2b399bc373de131b3736951f 100644 (file)
--- a/strlcat.c
+++ b/strlcat.c
  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include "config.h"
+#include "fetchmail.h"
+
 #include <sys/types.h>
 #include <assert.h>
 #include <string.h>
 
+#include "fm_strl.h"
+
 #ifndef HAVE_STRLCAT
 /*
  * Appends src to string dst of size siz (unlike strncat, siz is the
  * If retval >= siz, truncation occurred.
  */
 size_t
-strlcat(dst, src, siz)
-       char *dst;
-       const char *src;
-       size_t siz;
+strlcat(char *dst, const char *src, size_t siz)
 {
        char *d = dst;
        const char *s = src;