]> pd.if.org Git - pdclib/blobdiff - functions/string/strlen.c
Removed old files.
[pdclib] / functions / string / strlen.c
diff --git a/functions/string/strlen.c b/functions/string/strlen.c
deleted file mode 100644 (file)
index 05e5e3b..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-#include <__size_t.h>
-
-size_t strlen( const char * src )
-{
-    size_t len = 0;
-    while ( src[len] != '\0' )
-    {
-        ++len;
-    }
-    return len;
-}