代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/216450/4895237
3 printf.3
.\" @(#)printf.3s 6.3 (Berkeley) 6/5/86
.\"
.TH PRINTF 3 "June 5, 1986"
.AT 3
.SH NAME
printf, fprintf, sprintf, snprintf, vprintf, vfprintf, vsprintf, vsnprintf \- formatted output conversion
.SH SYN
www.eeworm.com/read/212598/4935485
c printf.c
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
printf.c
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
www.eeworm.com/read/209559/4959491
c printf.c
/*
* Carsten Langgaard, carstenl@mips.com
* Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
*
* This program is free software; you can distribute it and/or modify it
* und
www.eeworm.com/read/209559/4961173
c printf.c
/*
* printf.c: Internal prom library printf facility.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
* Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
* Copyright (c)
www.eeworm.com/read/209559/4961311
c printf.c
/* $Id: printf.c,v 1.5 1996/04/04 16:31:07 tridge Exp $
* printf.c: Internal prom library printf facility.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
*/
/* This routine is i
www.eeworm.com/read/209559/4962381
c printf.c
/*
* printf.c: Internal prom library printf facility.
*
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
* Copyright (c) 2002 Pete Zaitcev (zaitcev@yahoo.com)
*
* We used to warn a
www.eeworm.com/read/209215/4981308
c printf.c
/* vprintf.c
*
* (C) Copyright Apr 15 1995, Edmond J. Breen.
* ALL RIGHTS RESERVED.
* This code may be copied for personal, non-profit use only.
*
*/
#include
#include
#
www.eeworm.com/read/209211/4984837
c printf.c
/*
* pANS stdio -- printf
*/
#include "iolib.h"
int printf(const char *fmt, ...){
int n;
va_list args;
va_start(args, fmt);
n=vfprintf(stdout, fmt, args);
va_end(args);
return n;
}
www.eeworm.com/read/209211/4986555
c printf.c
/*
* pANS stdio -- printf
*/
#include "iolib.h"
int printf(const char *fmt, ...){
int n;
va_list args;
va_start(args, fmt);
n=vfprintf(stdout, fmt, args);
va_end(args);
return n;
}
www.eeworm.com/read/209093/4987386
c printf.c
/*
* File: printk.c
* Purpose: The standard C library routine printf(), but without
* all the baggage.
*/
#include "common.h"
#include
/*********************************