]> pd.if.org Git - pdclib/blobdiff - includes/string.h
Removed SVN keyword tags.
[pdclib] / includes / string.h
index 599653a384539dd632cb0e0b8ee4a1195f152b97..fcb1f3dc5cbc7a2e65b91bc40aa877ac0cf15a3e 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* 7.21 String handling <string.h>
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -196,5 +194,17 @@ char * strdup( const char* src ) _PDCLIB_nothrow;
 char * strndup( const char* src, size_t n ) _PDCLIB_nothrow;
 #endif
 
+#if _PDCLIB_BSD_SOURCE
+size_t strlcpy(
+   char *_PDCLIB_restrict _Dst,
+   const char *_PDCLIB_restrict _Src,
+   size_t _DstSize) _PDCLIB_nothrow;
+
+size_t strlcat(
+   char *_PDCLIB_restrict _Dst,
+   const char *_PDCLIB_restrict _Src,
+   size_t _DstSize) _PDCLIB_nothrow;
+#endif
+
 _PDCLIB_END_EXTERN_C
 #endif