代码搜索:stdio
找到约 10,000 项符合「stdio」的源代码
代码结果 10,000
www.eeworm.com/read/405687/11459374
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/405237/11468211
txt stdio.txt
/*--------------------------------------------------------------------------
STDIO.H
Prototypes for standard I/O functions.
Copyright (c) 1988-2002 Keil Elektronik GmbH and Keil Software, Inc.
A
www.eeworm.com/read/404377/11486524
h stdio.h
/*****************************************************************************/
/* STDIO.H v7.01 */
/* Copyright (c) 1993-2002 Texas Inst
www.eeworm.com/read/403166/11521245
h stdio.h
/*
** STDIO.H -- Standard Small C Definitions.
*/
extern char _iob[];
/*
#define exit OS_exit
#define fopen OS_fopen
#define fgetc OS_fgetc
#define fputc OS_fputc
#define fclose OS_fclose
#define ca
www.eeworm.com/read/403166/11521256
h stdio.h
/*
** STDIO.H -- Standard Small C Definitions.
*/
extern char _iob[];
/*
#define exit OS_exit
#define fopen OS_fopen
#define fgetc OS_fgetc
#define fputc OS_fputc
#define fclose OS_fclose
#define ca
www.eeworm.com/read/402208/11540519
h stdio.h
/* stdio.h: ANSI 'C' (X3J11 Oct 88) library header, section 4.9 */
/* Copyright (C) Codemist Ltd., 1988-1993 */
/* Copyright 1991-1998 ARM Limited. All rights reserved.
www.eeworm.com/read/402163/11542026
h stdio.h
www.eeworm.com/read/262262/11595676
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);