代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/435707/1861124
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/435707/1861174
c sprintf.c
#include
#include
#include "ioprivate.h"
struct sprintbuf {
char *buf;
};
static int
sprintputch(int ch, struct sprintbuf *b)
{
*b->buf++ = ch;
return 0;
}
int
vsprintf(cha
www.eeworm.com/read/410414/2210341
js sprintf.js
/* Function printf(format_string,arguments...)
* Javascript emulation of the C printf function (modifiers and argument types
* "p" and "n" are not supported due to language restrictions)
*
*
www.eeworm.com/read/409921/2219338
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
www.eeworm.com/read/401563/2339424
js sprintf.js
/*
Copyright (c) 2004-2008, The Dojo Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
if(
www.eeworm.com/read/400494/2352051
c sprintf.c
/* Copyright (C) 1991 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Li
www.eeworm.com/read/398200/2384007
c sprintf.c
//==========================================================================
//
// sprintf.c
//
// Light-weight BSP sprintf.
//
//============================================================
www.eeworm.com/read/398200/2384176
cxx sprintf.cxx
//===========================================================================
//
// sprintf.cxx
//
// ANSI Stdio sprintf() function
//
//=====================================================
www.eeworm.com/read/395929/2430516
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/395929/2431173
h sprintf.h
/****************************************************************
* TU Eindhoven, Eindhoven, The Netherlands, November 2003
* Contents : svprintf() is equivalent to vprintf(), but
*