代码搜索:stdio
找到约 10,000 项符合「stdio」的源代码
代码结果 10,000
www.eeworm.com/read/247262/12670396
h stdio.h
www.eeworm.com/read/332007/12786256
h stdio.h
#ifndef __STDIO_H
#define __STDIO_H
#include
#include
/* Change this to near (or omit altogether) if building small memory model
* versions of the libraries
*/
#defi
www.eeworm.com/read/143816/12839434
fc stdio.fc
void main( string args[] )
{
int input;
printf("please entry a int:");
scanf("%d", addrof(input));
printf("your input int is %d\n", input);
}
www.eeworm.com/read/143631/12855650
h stdio.h
www.eeworm.com/read/143516/12868668
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/143516/12869102
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/143389/12879154
h stdio.h
#include
int printf(const char *fmt, ...);
int sprintf(char *buf, const char *fmt, ...);
int vsprintf(char *buf, const char *fmt, va_list args);
int getc(void);
int getc_timed(int cs);
int
www.eeworm.com/read/142909/12908551
h stdio.h
#include
#include
#ifndef _STDIO_H
#define _STDIO_H
#define EOF (-1)
typedef struct _FILE FILE;
extern FILE *stdin,*stdout,*stderr;
int vsprintf(char *buf, const char *fmt
www.eeworm.com/read/329670/12939605
h stdio.h
/* stdio.h
* Copyright (c) 1990 Intel Corporation, ALL RIGHTS RESERVED.
*
* stdio.h - standard I/O header file
*/
#ifndef _stdio_h
#define _stdio_h
#include
#pragma varpa
www.eeworm.com/read/243434/12940930
c stdio.c
#include
#include
#include
FILE *
fdopen (int fd, const char *mode)
{
FILE *fp;
__libc_lock_lock (__libc_libio_lock);
fp = _IO_fdopen (fd, mode);
__libc_lock_u