代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/239309/4602696
c sprintf.c
/*
* sprintf.c
* Modified for use in 15-410 at CMU
* Zachary Anderson(zra)
*/
/*
* Copyright (c) 1994-1996 University of Utah and the Flux Group.
* All rights reserved.
*
* This file is part
www.eeworm.com/read/233448/4681906
c sprintf.c
#include
#include
extern int inside_main;
int
sprintf (char *buf, const char *fmt, ...)
{
va_list ap;
int r;
#ifdef __OPTIMIZE__
if (inside_main)
abort ();
#endif
va_
www.eeworm.com/read/233448/4681968
c sprintf.c
/* Copyright (C) 2003 Free Software Foundation.
Test sprintf optimizations don't break anything and return the
correct results.
Written by Roger Sayle, June 22, 2003. */
static char buff
www.eeworm.com/read/231546/4714646
al sprintf.al
# NOTE: Derived from ../../lib/POSIX.pm.
# Changes made here will be lost when autosplit again.
# See AutoSplit.pm.
package POSIX;
#line 368 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/s
www.eeworm.com/read/229812/4732162
c sprintf.c
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Res
www.eeworm.com/read/229812/4744677
c sprintf.c
#include
/* Create temporary file names using a counter */
char namebuf[13];
int TempCount = 0;
char *make_temp_name()
{
sprintf( namebuf, "ZZ%.6o.TMP", TempCount++ );
www.eeworm.com/read/229812/4750672
gml sprintf.gml
.func sprintf swprintf _usprintf
.funcw swprintf
#include
int sprintf( char *buf, const char *format, ... );
.ixfunc2 '&String' &func
.if &'length(&wfunc.) ne 0 .do begin
#include
www.eeworm.com/read/221452/4832453
h sprintf.h
/*
* File: sprintf.h
*/
#ifndef __SPRINTF_H__
#define __SPRINTF_H__
#if !defined(__TTYPE_H__)
#include "ttype.h"
#endif
/*--------------------- Export Definitions --------
www.eeworm.com/read/221452/4832465
c sprintf.c
/*
* File: sprintf.c
*/
#if !defined(__SPRINTF_H__)
#include "sprintf.h"
#endif
/*--------------------- Static Definitions ------------------------*/
enum PAD_ATTRIB {
P
www.eeworm.com/read/216802/4880808
c sprintf.c
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
/* Copyright (C) 1991, 1995 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free soft