X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrcspn.c;h=0417d512c45093187c9358c04aadfda0e95ddeb7;hb=c2f1367984ba4153d892062759c3813020b65a9a;hp=7c4d9b8c58054576394f2111ed88d259de8943aa;hpb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;p=pdclib diff --git a/functions/string/strcspn.c b/functions/string/strcspn.c index 7c4d9b8..0417d51 100644 --- a/functions/string/strcspn.c +++ b/functions/string/strcspn.c @@ -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 size_t strcspn( const char * src_1, const char * src_2 ) {