Deleted Added
sdiff udiff text old ( 8902:75b524b64c28 ) new ( 10386:c81407818741 )
full compact
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 14 unchanged lines hidden (view full) ---

23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 */
30
31#include <string>
32#include <vector>
33
34#include "base/str.hh"
35
36using namespace std;
37
38bool
39split_first(const string &s, string &lhs, string &rhs, char c)
40{
41 string::size_type offset = s.find(c);

--- 54 unchanged lines hidden (view full) ---

96 } else
97 first = last + 1;
98
99 last = s.find_first_of(token, first);
100 }
101
102 v.push_back(s.substr(first));
103}