Searched defs:strntold (Results 1 - 1 of 1) sorted by relevance

/ast/src/cmd/tests/
H A Dstrtof.c28 * strntod strntold
87 #undef strntold macro
88 #define strntold _tst_strntold macro
91 strntold(const char* s, size_t n, char** e) function
158 ld = strntold(s, n, &p);
159 printf("strntold %2d \"%-.*s\" \"%s\" %.*Le %s\n", n, n, s, p, LDBL_DIG - 1, ld, errno == 0 ? "OK" : errno == ERANGE ? "ERANGE" : errno == EINVAL ? "EINVAL" : "ERROR");
162 ld = strntold(s, n - 1, &p);
163 printf("strntold %2d \"%-.*s\" \"%s\" %.*Le %s\n", n - 1, n - 1, s, p, LDBL_DIG - 1, ld, errno == 0 ? "OK" : errno == ERANGE ? "ERANGE" : errno == EINVAL ? "EINVAL" : "ERROR");

Completed in 16 milliseconds