branch update for HEAD-2003091401
[reactos.git] / lib / msvcrt / string / strspn.c
diff --git a/lib/msvcrt/string/strspn.c b/lib/msvcrt/string/strspn.c
deleted file mode 100644 (file)
index f01e1bf..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <msvcrt/string.h>
-
-size_t
-strspn(const char *s1, const char *s2)
-{
-  const char *p = s1, *spanp;
-  char c, sc;
-
- cont:
-  c = *p++;
-  for (spanp = s2; (sc = *spanp++) != 0;)
-    if (sc == c)
-      goto cont;
-  return (p - 1 - s1);
-}