diff options
| author | Russ Cox <rsc@golang.org> | 2008-11-24 13:04:27 -0800 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2008-11-24 13:04:27 -0800 |
| commit | b65a930453232646b1511414bcdbc6e05b9db476 (patch) | |
| tree | dcbf89c2abddd807510ee54812d5493c6f3c182b /src/lib/strconv/Makefile | |
| parent | 508277debe6230ef210cf0165c393e6ff2fd0d4b (diff) | |
| download | go-b65a930453232646b1511414bcdbc6e05b9db476.tar.xz | |
utf8: add InString routines for decoding in strings
reflect: add InterfaceValue.Get(), remove Empty
strconv: add Quote, CanBackquote
fmt:
* %q go-quoted " string
* %#q go-quoted ` string if possible, " string otherwise
* %x hexadecimal string
* anywhere a string is okay, *[]byte is okay
* flags # 0 - + space
* print value inside interface, not interface itself
* tests
R=r
DELTA=756 (597 added, 121 deleted, 38 changed)
OCL=19888
CL=19916
Diffstat (limited to 'src/lib/strconv/Makefile')
| -rw-r--r-- | src/lib/strconv/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/strconv/Makefile b/src/lib/strconv/Makefile index 399360a936..cf74d58f73 100644 --- a/src/lib/strconv/Makefile +++ b/src/lib/strconv/Makefile @@ -33,8 +33,9 @@ coverage: packages O1=\ atoi.$O\ - decimal.$O\ itoa.$O\ + decimal.$O\ + quote.$O\ O2=\ ftoa.$O\ @@ -45,7 +46,7 @@ O3=\ strconv.a: a1 a2 a3 a1: $(O1) - $(AR) grc strconv.a atoi.$O decimal.$O itoa.$O + $(AR) grc strconv.a atoi.$O itoa.$O decimal.$O quote.$O rm -f $(O1) a2: $(O2) |
