update for HEAD-2003091401
[reactos.git] / lib / crtdll / string / strpbrk.c
diff --git a/lib/crtdll/string/strpbrk.c b/lib/crtdll/string/strpbrk.c
deleted file mode 100644 (file)
index c4837fc..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <msvcrt/string.h>
-
-
-char *
-strpbrk(const char *s1, const char *s2)
-{
-  const char *scanp;
-  int c, sc;
-
-  while ((c = *s1++) != 0)
-  {
-    for (scanp = s2; (sc = *scanp++) != 0;)
-      if (sc == c)
-       return (char *)(s1 - 1);
-  }
-  return 0;
-}