branch update for HEAD-2003091401
[reactos.git] / lib / crtdll / string / strrev.c
diff --git a/lib/crtdll/string/strrev.c b/lib/crtdll/string/strrev.c
deleted file mode 100644 (file)
index d36b7a3..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <msvcrt/string.h>
-
-char * _strrev(char *s)
-{
-       char  *e;
-       char   a;
-       e=s;
-       while (*e)
-               e++;
-       while (s<e) {
-               a=*s;
-               *s=*e;
-               *e=a;
-               s++;
-               e--;
-       }
-       return s;
-}