Rev 1234 | Rev 1465 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1234 | Rev 1301 | ||
---|---|---|---|
Line 33... | Line 33... | ||
33 | #include <stdarg.h> |
33 | #include <stdarg.h> |
34 | 34 | ||
35 | #define EOF (-1) |
35 | #define EOF (-1) |
36 | 36 | ||
37 | extern int puts(const char * str); |
37 | extern int puts(const char * str); |
- | 38 | extern int putchar(int c); |
|
38 | 39 | ||
39 | extern int printf(const char *fmt, ...); |
40 | extern int printf(const char *fmt, ...); |
40 | extern int sprintf(char *str, const char *fmt, ...); |
41 | extern int sprintf(char *str, const char *fmt, ...); |
41 | extern int snprintf(char *str, size_t size, const char *fmt, ...); |
42 | extern int snprintf(char *str, size_t size, const char *fmt, ...); |
42 | 43 |