代码搜索:stdio
找到约 10,000 项符合「stdio」的源代码
代码结果 10,000
www.eeworm.com/read/348129/11610035
h stdio.h
www.eeworm.com/read/348129/11610129
h stdio.h
www.eeworm.com/read/158402/11620919
h stdio.h
/*-------------------------------------------------------------
* stdio.h
*
* Header file for standard I/O routines.
*-------------------------------------------------------------*/
#ifndef
www.eeworm.com/read/158402/11620997
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/158402/11621019
o stdio.o
www.eeworm.com/read/347867/11629680
h stdio.h
/* - STDIO.H -
Subset of ANSI standard I/O function declarations.
$Revision: 38615 $
Copyright 1986 - 1999 IAR Systems. All rights reserved.
*/
#ifndef _STDI
www.eeworm.com/read/158101/11643426
h stdio.h
www.eeworm.com/read/158090/11643945
h stdio.h
www.eeworm.com/read/158090/11644017