Changeset b2951e2 in mainline for libc/generic/io
- Timestamp:
- 2006-06-07T19:27:43Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b3d1e11
- Parents:
- f951077
- Location:
- libc/generic/io
- Files:
-
- 9 edited
-
io.c (modified) (2 diffs)
-
printf.c (modified) (2 diffs)
-
printf_core.c (modified) (3 diffs)
-
snprintf.c (modified) (2 diffs)
-
sprintf.c (modified) (2 diffs)
-
stream.c (modified) (2 diffs)
-
vprintf.c (modified) (2 diffs)
-
vsnprintf.c (modified) (2 diffs)
-
vsprintf.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libc/generic/io/io.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 105 111 106 112 113 114 115 /** @} 116 */ 117 118 -
libc/generic/io/printf.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <io/printf_core.h> 30 36 #include <stdio.h> … … 51 57 52 58 59 60 61 /** @} 62 */ 63 64 -
libc/generic/io/printf_core.c
rf951077 rb2951e2 28 28 */ 29 29 30 /** @addtogroup libc 31 * @{ 32 */ 30 33 /** 31 * @file print.c34 * @file 32 35 * @brief Printing functions. 33 36 */ … … 413 416 * 414 417 * - P, p Print value of a pointer. Void * value is expected and it is printed in hexadecimal notation with prefix 415 * (as with \%#X or \%#x for 32bit or \%#X / \%#xfor 64bit long pointers).418 * (as with '\%#X' or '\%#x' for 32bit or '\%#X' or '\%#x' for 64bit long pointers). 416 419 * 417 420 * - b Print value as unsigned binary number. Prefix is not printed by default. (Nonstandard extension.) … … 686 689 } 687 690 691 692 693 /** @} 694 */ 695 696 -
libc/generic/io/snprintf.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <stdarg.h> 30 36 #include <stdio.h> … … 49 55 return ret; 50 56 } 57 58 59 /** @} 60 */ 61 62 -
libc/generic/io/sprintf.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <stdarg.h> 30 36 #include <stdio.h> … … 48 54 return ret; 49 55 } 56 57 58 /** @} 59 */ 60 61 -
libc/generic/io/stream.c
rf951077 rb2951e2 26 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 27 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 */ 29 30 /** @addtogroup libc 31 * @{ 32 */ 33 /** @file 28 34 */ 29 35 … … 182 188 return streams[fd].phone; 183 189 } 190 191 192 /** @} 193 */ 194 195 -
libc/generic/io/vprintf.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <stdarg.h> 30 36 #include <stdio.h> … … 52 58 53 59 60 61 62 /** @} 63 */ 64 65 -
libc/generic/io/vsnprintf.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 104 110 105 111 112 113 114 /** @} 115 */ 116 117 -
libc/generic/io/vsprintf.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <stdarg.h> 30 36 #include <stdio.h> … … 42 48 } 43 49 50 51 52 /** @} 53 */ 54 55
Note:
See TracChangeset
for help on using the changeset viewer.
