]> pd.if.org Git - pdclib/blobdiff - functions/string/strcspn.c
Added some of <string.h>.
[pdclib] / functions / string / strcspn.c
index 7c4d9b8c58054576394f2111ed88d259de8943aa..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 )
 {