代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/16293/668507
h printf.h
#ifndef _PRINTF_H
#define _PRINTF_H
int printf(const char *fmt, ...);
int scanf(const char * fmt, ...);
#endif /* _PRINTF_H */
www.eeworm.com/read/16293/668537
c printf.c
#include "vsprintf.h"
#include "printf.h"
#include "string.h"
extern void putc(unsigned char c);
extern unsigned char getc(void);
#define OUTBUFSIZE 1024
#define INBUFSIZE 1024
static unsigned cha
www.eeworm.com/read/16293/668542
h printf.h
#ifndef _PRINTF_H
#define _PRINTF_H
int printf(const char *fmt, ...);
int scanf(const char * fmt, ...);
#endif /* _PRINTF_H */
www.eeworm.com/read/16496/673071
html printf.html
www.eeworm.com/read/16496/673121
html printf.html
www.eeworm.com/read/16621/681562
html printf.html
www.eeworm.com/read/16621/681612
html printf.html
www.eeworm.com/read/16793/691140
tests printf.tests
LC_ALL=C
LC_NUMERIC=C
# these should output error messages -- the format is required
printf
printf --
# these should output nothing
printf ""
printf -- ""
# in the future this may mean to put the o
www.eeworm.com/read/16793/691182
run-printf
# See whether or not we can use `diff -a'
( diff -a ./printf.tests ./printf.tests >/dev/null 2>&1 ) && AFLAG=-a
${THIS_SH} ./printf.tests > /tmp/xx 2>&1
diff $AFLAG /tmp/xx printf.right && rm -f /tmp
www.eeworm.com/read/16793/691367