X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fcrtdll%2Fstring%2Fstrlen.c;fp=lib%2Fcrtdll%2Fstring%2Fstrlen.c;h=0000000000000000000000000000000000000000;hp=a2995f87dd6a8e5e30b5856783c7ff2caa80975b;hb=a3df8bf1429570e0bd6c6428f6ed80073578cf4b;hpb=7c0db166f81fbe8c8b913d7f26048e337d383605 diff --git a/lib/crtdll/string/strlen.c b/lib/crtdll/string/strlen.c deleted file mode 100644 index a2995f8..0000000 --- a/lib/crtdll/string/strlen.c +++ /dev/null @@ -1,14 +0,0 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ -#include - - -size_t strlen(const char* str) -{ - const char* s; - - if (str == 0) - return 0; - for (s = str; *s; ++s); - return s-str; -} -