代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/477944/6726477
h printf.h
#ifndef _PRINTF_H
#define _PRINTF_H
int printf(const char *fmt, ...);
int scanf(const char * fmt, ...);
#endif /* _PRINTF_H */
www.eeworm.com/read/477426/6734832
c printf.c
/* ***********************************************************************
**
** Copyright (C) 2002 Jesper Hansen
**
**
** Yampp-7 - output formating routines
**
** Fil
www.eeworm.com/read/477426/6734847
h printf.h
/* ***********************************************************************
**
** Copyright (C) 2002 Jesper Hansen
**
**
** Yampp-7/USB - output formating routines
**
**
www.eeworm.com/read/476941/6743266
c printf.c
#include "types.h"
#include "stat.h"
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
}
static void
printint(int fd, int xx, int base, int sgn)
{
static char digits[] = "01
www.eeworm.com/read/476712/6748674
c printf.c
#include "vsprintf.h"
#include "printf.h"
#include "string.h"
extern void putc(unsigned char c);
extern unsigned char getc(void);
#define OUTBUFSIZE 1024
#define INBUFSIZE 1024
static unsigned cha
www.eeworm.com/read/476712/6748679
h printf.h
#ifndef _PRINTF_H
#define _PRINTF_H
int printf(const char *fmt, ...);
int scanf(const char * fmt, ...);
#endif /* _PRINTF_H */
www.eeworm.com/read/410889/11265897
c printf.c
/*
** The "printf" code that follows dates from the 1980's. It is in
** the public domain. The original comments are included here for
** completeness. They are very out-of-date but might be useful
www.eeworm.com/read/409898/11307612
cc printf.cc
/*
* Mach Operating System
* Copyright (c) 1993-1989 Carnegie Mellon University.
* Copyright (c) 1994 The University of Utah and
* the Computer Systems Laboratory (CSL).
* All rights reserve
www.eeworm.com/read/409897/11307657
cc printf.cc
/*
* Mach Operating System
* Copyright (c) 1993-1989 Carnegie Mellon University.
* Copyright (c) 1994 The University of Utah and
* the Computer Systems Laboratory (CSL).
* All rights reserve
www.eeworm.com/read/264310/11319727