代码搜索:stdio
找到约 10,000 项符合「stdio」的源代码
代码结果 10,000
www.eeworm.com/read/241729/13123479
lib stdio.lib
www.eeworm.com/read/241729/13123566
h stdio.h
/*
revision:
2002-5-28: remove printf_end by wangwenyan
*/
#ifndef _STDIO_H_
#define _STDIO_H_
#include "_ansi.h"
#define _FSTDIO /* ``function stdio'' */
#define __need_size_t
#inc
www.eeworm.com/read/241728/13123723
lib stdio.lib
www.eeworm.com/read/241728/13123792
h stdio.h
/*
revision:
2002-5-28: remove printf_end by wangwenyan
*/
#ifndef _STDIO_H_
#define _STDIO_H_
#include "_ansi.h"
#define _FSTDIO /* ``function stdio'' */
#define __need_size_t
#inc
www.eeworm.com/read/139738/13137161
h stdio.h
/*-------------------------------------------------------------
* stdio.h
*
* Header file for standard I/O routines.
*-------------------------------------------------------------*/
#ifndef
www.eeworm.com/read/139738/13137253
c stdio.c
#include "stdio.h"
#include "stdlib.h"
int fgetc(int fd) {
unsigned char c;
while (read(fd, &c, 1) != 1);
return c;
}
void fputc(char c, int fd) {
write(fd, &c, 1);
}
www.eeworm.com/read/139738/13137278
o stdio.o
www.eeworm.com/read/326496/13137762
h stdio.h
www.eeworm.com/read/326496/13137808
h stdio.h
www.eeworm.com/read/326496/13137980