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