代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/131315/5930555
c sprintf.c
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Chris Torek.
*
* Redistri
www.eeworm.com/read/131315/5935897
t sprintf.t
#!./perl
# $Header: sprintf.t,v 4.0 91/03/20 01:54:46 lwall Locked $
print "1..1\n";
$x = sprintf("%3s %-4s%%foo %5d%c%3.1f","hi",123,456,65,3.0999);
if ($x eq ' hi 123 %foo 456A3.1') {print "ok
www.eeworm.com/read/131315/5941134
c sprintf.c
#include
#include
extern "C" int sprintf(char *string, const char *format, ...)
{
va_list ap;
va_start(ap, format);
int ret = vsprintf(string, format, ap);
www.eeworm.com/read/128501/5990073
c _sprintf.c
/***********************************************************************/
/* */
/* Module: _sprintf.c
www.eeworm.com/read/128447/5990334
cxx sprintf.cxx
//===========================================================================
//
// sprintf.cxx
//
// ANSI Stdio sprintf() function
//
//=====================================================
www.eeworm.com/read/125688/6024245
c sprintf.c
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Chris Torek.
*
* Redistri
www.eeworm.com/read/125688/6025816
c sprintf.c
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Chris Torek.
*
* Redistri
www.eeworm.com/read/124347/6051842
c sprintf.c
/*
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that the above copyright
www.eeworm.com/read/123322/6060558
c sprintf.c
//==========================================================================
//
// sprintf.c
//
// Light-weight BSP sprintf.
//
//============================================================
www.eeworm.com/read/123322/6060709
cxx sprintf.cxx
//===========================================================================
//
// sprintf.cxx
//
// ANSI Stdio sprintf() function
//
//=====================================================