Changeset 59f799b in mainline for uspace/lib/posix/stdio.c
- Timestamp:
- 2011-06-16T19:42:22Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 39a7bfa
- Parents:
- 491e1ee
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.c
r491e1ee r59f799b 47 47 */ 48 48 #include "../c/generic/private/stdio.h" 49 50 /** 51 * 52 * @param c 53 * @param stream 54 * @return 55 */ 56 int posix_ungetc(int c, FILE *stream) 57 { 58 // TODO 59 not_implemented(); 60 } 49 61 50 62 /** … … 135 147 } 136 148 149 /** 150 * 151 * @param s 152 * @param format 153 * @param ... 154 * @return 155 */ 156 int posix_sprintf(char *s, const char *format, ...) 157 { 158 // TODO 159 not_implemented(); 160 } 161 162 /** 163 * 164 * @param s 165 * @param format 166 * @param ... 167 * @return 168 */ 169 int posix_sscanf(const char *s, const char *format, ...) 170 { 171 // TODO 172 not_implemented(); 173 } 174 137 175 /** @} 138 176 */
Note:
See TracChangeset
for help on using the changeset viewer.