// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // The original source code is from: // http://src.chromium.org/viewvc/chrome/trunk/src/base/strings/string_split.cc?revision=216633 #include "string_split.h" #include <cassert> #include <cstddef> #include <string> #include <vector> namespace i18n { namespace addressinput { void SplitString(const std::string& str, char s, std::vector<std::string>* r) { … } } // namespace addressinput } // namespace i18n