Changeset 3214a20 in mainline for libc/include/stdio.h
- Timestamp:
- 2006-04-24T21:05:59Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 11fa83a
- Parents:
- 4309741
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.