Changes in uspace/lib/posix/stdlib.c [63fc519:4f4b4e7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdlib.c
r63fc519 r4f4b4e7 37 37 38 38 #include "stdlib.h" 39 #include " internal/common.h"39 #include "common.h" 40 40 41 41 /** … … 77 77 78 78 /** 79 * Converts a string representation of a floating-point number to 80 * its native representation. See posix_strtold(). 81 * 79 * 82 80 * @param nptr 83 81 * @param endptr … … 86 84 float posix_strtof(const char *restrict nptr, char **restrict endptr) 87 85 { 88 return (float) posix_strtold(nptr, endptr); 86 // TODO 87 not_implemented(); 89 88 } 90 89 91 90 /** 92 * Converts a string representation of a floating-point number to 93 * its native representation. See posix_strtold(). 94 * 91 * 95 92 * @param nptr 96 93 * @param endptr … … 99 96 double posix_strtod(const char *restrict nptr, char **restrict endptr) 100 97 { 101 return (double) posix_strtold(nptr, endptr); 98 // TODO 99 not_implemented(); 100 } 101 102 /** 103 * 104 * @param nptr 105 * @param endptr 106 * @return 107 */ 108 long double posix_strtold(const char *restrict nptr, char **restrict endptr) 109 { 110 // TODO 111 not_implemented(); 102 112 } 103 113
Note:
See TracChangeset
for help on using the changeset viewer.