go-strslice.c 849 Bytes
Newer Older
1 2 3 4 5 6 7 8
/* 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"

9 10
String
__go_string_slice (String s, intgo start, intgo end)
11
{
12 13
  intgo len;
  String ret;
14

15
  len = s.len;
16 17 18
  if (end == -1)
    end = len;
  if (start > len || end < start || end > len)
19
    runtime_panicstring ("string index out of bounds");
20
  ret.len = end - start;
21 22 23 24 25 26 27
  // 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
28
    ret.str = s.str + start;
29 30
  return ret;
}