From 6e9af8bd4435fca55b91d6d794099121318972dc Mon Sep 17 00:00:00 2001 From: Torne Wuff Date: Sat, 2 Jan 2010 13:31:46 +0000 Subject: Add strlcat to core to match strlcpy (also add to plugin api). Some uses of strcat could probably do with being changed to this. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24141 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.h | 1 + 1 file changed, 1 insertion(+) (limited to 'apps/plugin.h') diff --git a/apps/plugin.h b/apps/plugin.h index c92fcef..cf16eef 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -863,6 +863,7 @@ struct plugin_api { #if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__) int* __errno; #endif + size_t (*strlcat)(char *dst, const char *src, size_t length); }; /* plugin header */ -- cgit v1.1