Lines Matching full:endp
948 @param endp Pointer to end of the converted string.
968 TRIO_ARGS2((source, endp),
970 char **endp)
973 return strtold(source, endp);
1085 if (endp)
1086 *endp = (char *)source;
1096 @param endp Pointer to end of the converted string.
1103 TRIO_ARGS2((source, endp),
1105 char **endp)
1108 return strtod(source, endp);
1110 return (double)trio_to_long_double(source, endp);
1119 @param endp Pointer to end of the converted string.
1126 TRIO_ARGS2((source, endp),
1128 char **endp)
1131 return strtof(source, endp);
1133 return (float)trio_to_long_double(source, endp);
1143 @param endp Pointer to end of converted string.
1148 TRIO_ARGS3((string, endp, base),
1150 char **endp,
1156 return strtol(string, endp, base);
1192 @param endp Pointer to end of converted string.
1197 TRIO_ARGS3((string, endp, base),
1199 char **endp,
1205 return strtoul(string, endp, base);