Enlightenment CVS committal

Author  : rephorm
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore/src/lib/ecore


Modified Files:
        Ecore_Str.h ecore_str.c 


Log Message:

finish adding ecore_strlcat...

===================================================================
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/Ecore_Str.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Ecore_Str.h 25 Jan 2007 23:43:46 -0000      1.3
+++ Ecore_Str.h 17 Feb 2007 06:25:53 -0000      1.4
@@ -41,6 +41,7 @@
 
 /* strlcpy implementation for libc's lacking it */
 EAPI size_t ecore_strlcpy(char *dst, const char *src, size_t siz);
+EAPI size_t ecore_strlcat(char *dst, const char *src, size_t siz);
 
 EAPI int ecore_str_has_prefix(const char *str, const char *prefix);
 
===================================================================
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/ecore_str.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- ecore_str.c 16 Feb 2007 23:49:55 -0000      1.4
+++ ecore_str.c 17 Feb 2007 06:25:53 -0000      1.5
@@ -68,7 +68,7 @@
  * If retval >= siz, truncation occurred.
  */
 size_t
-strlcat(char *dst, const char *src, size_t siz)
+ecore_strlcat(char *dst, const char *src, size_t siz)
 {
         char *d = dst;
         const char *s = src;



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to