aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime.h
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2008-07-08 10:36:43 -0700
committerRob Pike <r@golang.org>2008-07-08 10:36:43 -0700
commit6db99de6069162a3e2b41de3e202e58ce329988d (patch)
treea59b0cc97bb7ce5575c8b137b4586a95556fdd0c /src/runtime/runtime.h
parent5352306f1066e68985bf6f299ba0bafaee14a3fd (diff)
downloadgo-6db99de6069162a3e2b41de3e202e58ce329988d.tar.xz
add bytestorune and stringtorune to sys.
SVN=126321
Diffstat (limited to 'src/runtime/runtime.h')
-rw-r--r--src/runtime/runtime.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
index dc8f88bb7a..14e8f177be 100644
--- a/src/runtime/runtime.h
+++ b/src/runtime/runtime.h
@@ -142,4 +142,10 @@ void sys·intstring(int64, string);
void sys·ifaces2i(Sigi*, Sigs*, Map*, void*);
void sys·ifacei2i(Sigi*, Map*, void*);
void sys·ifacei2s(Sigs*, Map*, void*);
+
+/*
+ * User go-called
+ */
void sys·readfile(string, string, bool);
+void sys·bytestorune(byte*, int32, int32, int32, int32);
+void sys·stringtorune(string, int32, int32, int32, int32);