aboutsummaryrefslogtreecommitdiff
path: root/ber/string.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-08-06 16:17:07 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-08-06 16:17:07 +0200
commitf83e5f62aebf4924a393f5c131b32e0843a735c9 (patch)
tree1f780296743703c016e47365278566be37667d16 /ber/string.go
parent1011b0952a55c0102cd81ba95d46b8eaeea4bcf5 (diff)
Export string
Diffstat (limited to 'ber/string.go')
-rw-r--r--ber/string.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ber/string.go b/ber/string.go
index 77d0ea4..98eb617 100644
--- a/ber/string.go
+++ b/ber/string.go
@@ -1,9 +1,9 @@
package ber
-func marshalString(s string) []byte {
+func MarshalString(s string) []byte {
return []byte(s)
}
-func unmarshalString(b []byte) string {
+func UnmarshalString(b []byte) string {
return string(b)
}