代码搜索:printf

找到约 10,000 项符合「printf」的源代码

代码结果 10,000
www.eeworm.com/read/410898/2199694

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/410898/2199706

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/410898/2199711

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/410898/2199724

c printf.c

#include "vsprintf.h" #include "string.h" #include "printf.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/410898/2199729

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/410898/2199742

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/410898/2199747

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/410186/2218165

h printf.h

#undef CONFIG_PRINTF
www.eeworm.com/read/409921/2219317

c printf.c

/* Copyright (C) 1991, 1995, 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it unde
www.eeworm.com/read/407447/2263995

c printf.c

#include #include #include #include static char buffer[1024]; EXPORT int printf(const char *fmt, ...) { va_list args; int i; va_start(args, fmt);