blob: fff536084d19acab5b30bb53a68889d1601ee51d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
GO_LIBRARY()
SRCS(
atob.go
atoc.go
atof.go
atoi.go
bytealg.go
ctoa.go
decimal.go
doc.go
eisel_lemire.go
ftoa.go
ftoaryu.go
isprint.go
itoa.go
quote.go
)
GO_TEST_SRCS(
export_test.go
internal_test.go
)
GO_XTEST_SRCS(
atob_test.go
atoc_test.go
atof_test.go
atoi_test.go
ctoa_test.go
decimal_test.go
example_test.go
fp_test.go
ftoa_test.go
ftoaryu_test.go
itoa_test.go
quote_test.go
strconv_test.go
)
END()
RECURSE(
)
|