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

27 lines
605 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 "go-panic.h"
#include "runtime.h"
#include "arch.h"
#include "malloc.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.str = s.str + start;
ret.len = end - start;
2012-03-27 23:13:14 +00:00
return ret;
}