Retro68/gcc/libgo/runtime/go-strslice.c

31 lines
849 B
C
Raw Normal View History

2012-03-27 23:13:14 +00:00
/* go-strslice.c -- the go string slice function.
Copyright 2009 The Go Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file. */
#include "runtime.h"
2014-09-21 17:33:12 +00:00
String
__go_string_slice (String s, intgo start, intgo end)
2012-03-27 23:13:14 +00:00
{
2014-09-21 17:33:12 +00:00
intgo len;
String ret;
2012-03-27 23:13:14 +00:00
2014-09-21 17:33:12 +00:00
len = s.len;
2012-03-27 23:13:14 +00:00
if (end == -1)
end = len;
if (start > len || end < start || end > len)
runtime_panicstring ("string index out of bounds");
2014-09-21 17:33:12 +00:00
ret.len = end - start;
2018-12-28 15:30:48 +00:00
// If the length of the new string is zero, the str field doesn't
// matter, so just set it to nil. This avoids the problem of
// s.str + start pointing just past the end of the string,
// which may keep the next memory block alive unnecessarily.
if (ret.len == 0)
ret.str = nil;
else
ret.str = s.str + start;
2012-03-27 23:13:14 +00:00
return ret;
}