OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Strtol
(Results
1 - 3
of
3
) sorted by null
/prebuilts/go/darwin-x86/misc/cgo/test/
basic.go
74
func
Strtol
(s string, base int) (int, error) {
76
n, err := C.
strtol
(p, nil, C.int(base))
122
n, m := C.
strtol
(p, nil, 345), C.
strtol
(p, nil, 10)
124
// Bug in OpenBSD
strtol
(3) - base > 36 succeeds.
126
t.Fatal("
Strtol
x2: ", n, m)
129
t.Fatal("
Strtol
x2: ", n, m)
/prebuilts/go/linux-x86/misc/cgo/test/
basic.go
74
func
Strtol
(s string, base int) (int, error) {
76
n, err := C.
strtol
(p, nil, C.int(base))
122
n, m := C.
strtol
(p, nil, 345), C.
strtol
(p, nil, 10)
124
// Bug in OpenBSD
strtol
(3) - base > 36 succeeds.
126
t.Fatal("
Strtol
x2: ", n, m)
129
t.Fatal("
Strtol
x2: ", n, m)
/external/libedit/src/
chartype.h
110
#define
Strtol
(p,e,b) wcstol(p,e,b)
165
#define
Strtol
(p,e,b)
strtol
(p,e,b)
Completed in 2943 milliseconds