代码搜索:stdio
找到约 10,000 项符合「stdio」的源代码
代码结果 10,000
www.eeworm.com/read/156368/11808131
h stdio.h
/*--------------------------------------------------------------------------
STDIO.H
Prototypes for standard I/O functions.
Copyright (c) 1988-2001 Keil Elektronik GmbH and Keil Software, Inc.
A
www.eeworm.com/read/345408/11816528
h stdio.h
/*****************************************************************************/
/* STDIO.H v3.50 */
/* Copyright (c) 1996-1999 Texas Instrume
www.eeworm.com/read/345407/11816560
h stdio.h
/*****************************************************************************/
/* STDIO.H v3.50 */
/* Copyright (c) 1996-1999 Texas Instrume
www.eeworm.com/read/345081/11840983
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/345059/11841616
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/345059/11842061
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/345008/11846900
h stdio.h
/*****************************************************************************/
/* STDIO.H v4.1.0 */
/* Copyright (c) 1993-2005 Texas Instr
www.eeworm.com/read/258225/11875084
h stdio.h
/* stdio.h
Definitions for stream input/output.
Copyright (c) 1987, 1992 by Borland International
All Rights Reserved.
*/
#ifndef __STDIO_H
#define __STDIO_H
#if !defined(_
www.eeworm.com/read/155317/11885233
h _stdio.h
#include
#include
/* flag to describe additional control
*/
#define F_ALTFORM 0x0001 /* alternate form, e.g. %#x */
#define F_LONG 0x0002 /* long modifier, e.g. %ld */
www.eeworm.com/read/155143/11895534
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