Changeset 80076f6 in mainline
- Timestamp:
- 2006-06-06T21:06:28Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9ab91f16
- Parents:
- d1c4b9e
- Location:
- libc/generic/io
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/generic/io/printf.c
rd1c4b9e r80076f6 31 31 #include <stdio.h> 32 32 33 /** Print formatted text. 34 * @param fmt format string 35 * \see For more details about format string see printf_core. 36 */ 33 37 int printf(const char *fmt, ...) 34 38 { -
libc/generic/io/snprintf.c
rd1c4b9e r80076f6 31 31 #include <io/printf_core.h> 32 32 33 /** Print formatted to the given buffer with limited size. 34 * @param str buffer 35 * @param size buffer size 36 * @param fmt format string 37 * \see For more details about format string see printf_core. 38 */ 33 39 int snprintf(char *str, size_t size, const char *fmt, ...) 34 40 { -
libc/generic/io/sprintf.c
rd1c4b9e r80076f6 31 31 #include <io/printf_core.h> 32 32 33 /** Print formatted to the given buffer. 34 * @param str buffer 35 * @param fmt format string 36 * \see For more details about format string see printf_core. 37 */ 33 38 int sprintf(char *str, const char *fmt, ...) 34 39 { -
libc/generic/io/vprintf.c
rd1c4b9e r80076f6 39 39 } 40 40 41 /** Print formatted text. 42 * @param fmt format string 43 * @param ap format parameters 44 * \see For more details about format string see printf_core. 45 */ 41 46 int vprintf(const char *fmt, va_list ap) 42 47 { -
libc/generic/io/vsnprintf.c
rd1c4b9e r80076f6 84 84 } 85 85 86 /** Print formatted to the given buffer with limited size. 87 * @param str buffer 88 * @param size buffer size 89 * @param fmt format string 90 * \see For more details about format string see printf_core. 91 */ 86 92 int vsnprintf(char *str, size_t size, const char *fmt, va_list ap) 87 93 { -
libc/generic/io/vsprintf.c
rd1c4b9e r80076f6 31 31 #include <io/printf_core.h> 32 32 33 /** Print formatted to the given buffer. 34 * @param str buffer 35 * @param fmt format string 36 * @param ap argument list 37 * \see For more details about format string see printf_core. 38 */ 33 39 int vsprintf(char *str, const char *fmt, va_list ap) 34 40 {
Note:
See TracChangeset
for help on using the changeset viewer.