Move Arch to irc module.
[reactos.git] / rosapps / games / ArchBlackmann / chomp.cpp
diff --git a/rosapps/games/ArchBlackmann/chomp.cpp b/rosapps/games/ArchBlackmann/chomp.cpp
deleted file mode 100644 (file)
index 5a3a208..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// chomp.cpp
-// This file is (C) 2004 Royce Mitchell III
-// and released under the BSD & LGPL licenses
-
-#include "chomp.h"
-
-std::string chomp ( const std::string& s )
-{
-       const char* p = &s[0];
-       const char* p2 = &s[0] + s.size();
-       while ( p2 > p && strchr("\r\n", p2[-1]) )
-               p2--;
-       return std::string ( p, p2-p );
-}
-