Changeset 3214a20 in mainline for libc/include
- Timestamp:
- 2006-04-24T21:05:59Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 11fa83a
- Parents:
- 4309741
- Location:
- libc/include
- Files:
-
- 1 added
- 2 edited
-
io/io.h (modified) (1 diff)
-
io/printf_core.h (added)
-
stdio.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libc/include/io/io.h
r4309741 r3214a20 28 28 29 29 #ifndef __LIBC__IO_H__ 30 #define __LIBC__IO_ IO_H__30 #define __LIBC__IO_H__ 31 31 32 32 #include <libarch/types.h> -
libc/include/stdio.h
r4309741 r3214a20 31 31 32 32 #include <types.h> 33 #include <stdarg.h> 33 34 34 35 #define EOF (-1) … … 37 38 38 39 extern int printf(const char *fmt, ...); 40 extern int sprintf(char *str, const char *fmt, ...); 41 extern int snprintf(char *str, size_t size, const char *fmt, ...); 42 43 extern int vprintf(const char *fmt, va_list ap); 44 extern int vsprintf(char *str, const char *fmt, va_list ap); 45 extern int vsnprintf(char *str, size_t size, const char *fmt, va_list ap); 46 39 47 #define fprintf(f, fmt, ...) printf(fmt, ##__VA_ARGS__) 40 48
Note:
See TracChangeset
for help on using the changeset viewer.
