2010-12-03 05:34:57 +01: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"
|
|
|
|
|
2012-11-01 04:02:13 +01:00
|
|
|
String
|
|
|
|
__go_string_slice (String s, intgo start, intgo end)
|
2010-12-03 05:34:57 +01:00
|
|
|
{
|
2012-11-01 04:02:13 +01:00
|
|
|
intgo len;
|
|
|
|
String ret;
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2012-11-01 04:02:13 +01:00
|
|
|
len = s.len;
|
2010-12-03 05:34:57 +01:00
|
|
|
if (end == -1)
|
|
|
|
end = len;
|
|
|
|
if (start > len || end < start || end > len)
|
2011-11-30 01:21:52 +01:00
|
|
|
runtime_panicstring ("string index out of bounds");
|
2012-11-01 04:02:13 +01:00
|
|
|
ret.str = s.str + start;
|
|
|
|
ret.len = end - start;
|
2010-12-03 05:34:57 +01:00
|
|
|
return ret;
|
|
|
|
}
|