]> pd.if.org Git - pdclib/blobdiff - functions/string/strcspn.c
Added some of <string.h>.
[pdclib] / functions / string / strcspn.c
index 70b978824e7d6973df4a393c678aad6cb47daad5..0417d512c45093187c9358c04aadfda0e95ddeb7 100644 (file)
@@ -1,11 +1,14 @@
-// ----------------------------------------------------------------------------
-// $Id$
-// ----------------------------------------------------------------------------
-// Public Domain C Library - http://pdclib.sourceforge.net
-// This code is Public Domain. Use, modify, and redistribute at will.
-// ----------------------------------------------------------------------------
+/* $Id$ */
 
-#include <__size_t.h>
+/* Release $Name$ */
+
+/* strcspn( const char *, const char * )
+
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#include <string.h>
 
 size_t strcspn( const char * src_1, const char * src_2 )
 {