代码搜索:stdio
找到约 10,000 项符合「stdio」的源代码
代码结果 10,000
www.eeworm.com/read/198958/7901166
h stdio.h
/***
*stdio.h - definitions/declarations for standard I/O routines
*
* Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* This file defines the struct
www.eeworm.com/read/197810/7969842
h stdio.h
/* ... support */
typedef unsigned char *va_list;
#define va_start(parm) (((unsigned char *)&parm))
#define va_arg(ap, type) (*(type *)(ap-=sizeof(type)))
/* standard output routine definition
www.eeworm.com/read/398260/7996609
h stdio.h
www.eeworm.com/read/297061/8057165
h stdio.h
/***********************************************************/
/* Version 2.20.02 */
/***********************************************************/
#ifndef _ST
www.eeworm.com/read/296603/8088760
h stdio.h
/*****************************************************************************/
/* STDIO.H v3.01 */
/* Copyright (c) 1993-1999 Texas Instru
www.eeworm.com/read/196228/8110079
h stdio.h
www.eeworm.com/read/396258/8117895
h stdio.h
#ifndef _STDIO_H
#define _STDIO_H
extern int getc(void);
extern int putc(int ch);
extern int sprintf(char *buf, const char *fmt, ...);
extern int printf(const char *fmt, ...);
#endif
www.eeworm.com/read/396258/8118014
c stdio.c
#include
#include
#include
extern int vsprintf(char *buff, const char *fmt, va_list args);
int printf(const char *fmt, ...){
int n;
char buff[1024];
va_list args
www.eeworm.com/read/396258/8118035