branch update for HEAD-2003091401
[reactos.git] / lib / crtdll / string / strnlen.c
diff --git a/lib/crtdll/string/strnlen.c b/lib/crtdll/string/strnlen.c
deleted file mode 100644 (file)
index ba113d0..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
-#include <msvcrt/string.h>
-
-size_t
-strnlen(const char *str, size_t count)
-{
-  const char *s;
-
-  if (str == 0)
-    return 0;
-  for (s = str; *s && count; ++s, count--);
-  return s-str;
-}
-