]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/strutl.cc
make compressed-indexes test pass again
[apt.git] / apt-pkg / contrib / strutl.cc
index 0f48860b1864a0ee706c289b9d016ee326f92dda..7948673dc193c899fac467360aa35486137610a2 100644 (file)
@@ -62,6 +62,13 @@ bool Endswith(const std::string &s, const std::string &end)
    return (s.substr(s.size() - end.size(), s.size()) == end);
 }
 
+bool Startswith(const std::string &s, const std::string &start)
+{
+   if (start.size() > s.size())
+      return false;
+   return (s.substr(0, start.size()) == start);
+}
+
 }
 }
                                                                        /*}}}*/