代码搜索:stdio
找到约 10,000 项符合「stdio」的源代码
代码结果 10,000
www.eeworm.com/read/129337/14250975
c stdio.c
#include
int main()
{
int c;
FILE *in, *out;
in = fopen("file.in","r");
out = fopen("file.out","w");
while((c = fgetc(in)) != EOF)
fputc(c,out);
exit(0);
www.eeworm.com/read/230929/14267620
h stdio.h
www.eeworm.com/read/230899/14269584
h stdio.h
#ifndef _STDIO_H
#define _STDIO_H
#ifndef _GLOBAL_H
#include "global.h"
#endif
#define EOL_LEN 3
#define _fd_type(fd) (((fd) >> 13) & 3)
#define _fd_seq(fd) ((fd) & 8191)
#define _mk_fd(
www.eeworm.com/read/230899/14269857
c stdio.c
/* Standard I/O routines with socket support
* Replaces those in Borland C++ library
*/
#include
#include
#include
#include
#include
#d
www.eeworm.com/read/230739/14277092
h stdio.h
www.eeworm.com/read/230612/14280686
h stdio.h
#ifndef _STDIO_H
#define _STDIO_H
#include "types.h"
#ifndef _VALIST
#define _VALIST
typedef char *va_list;
#endif /* _VALIST */
extern int vsnprintf(char *buf, size_t size, const char *fmt, va_li
www.eeworm.com/read/230611/14280757
h stdio.h
#ifndef _STDIO_H
#define _STDIO_H
#include "types.h"
#ifndef _VALIST
#define _VALIST
typedef char *va_list;
#endif /* _VALIST */
extern int vsnprintf(char *buf, size_t size, const char *fmt, va_li
www.eeworm.com/read/128628/14285941
c no_stdio.c
void main(void)
{
printf ("Jamsa\'s C/C++ Programmer\'s Bible");
}
www.eeworm.com/read/128581/14290635