代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/308433/3713653
c tst_sprintf.c
#include
void tst_sprintf (void) {
char buf [100];
int n;
int a,b;
float pi;
a = 123;
b = 456;
pi = 3.14159;
n = sprintf (buf, "%f\n", 1.1);
n += sprintf
www.eeworm.com/read/287081/4030522
c,v sprintf.c,v
head 1.1;
access;
symbols;
locks
dls:1.1; strict;
comment @ * @;
1.1
date 97.09.21.19.27.40; author dls; state Dist;
branches;
next ;
desc
@@
1.1
log
@pre-3e code
@
text
@/* sprintf.c - sprintf
www.eeworm.com/read/283355/4080064
patch sprintf-prototype.patch
--- glibc-2.2.5/stdio-common/sprintf.c.old Wed May 28 08:59:11 2003
+++ glibc-2.2.5/stdio-common/sprintf.c Wed May 28 08:59:45 2003
@@ -27,9 +27,7 @@
/* Write formatted output into S, according to th
www.eeworm.com/read/431664/1905164
c su_sprintf.c
/*
* This file is part of the Sofia-SIP package
*
* Copyright (C) 2005 Nokia Corporation.
*
* Contact: Pekka Pessi
*
* This library is free software; you can redistribut
www.eeworm.com/read/398200/2384136
c sprintf1.c
//=================================================================
//
// sprintf1.c
//
// Testcase for C library sprintf()
//
//=========================================================
www.eeworm.com/read/398200/2384139
c sprintf2.c
//=================================================================
//
// sprintf2.c
//
// Testcase for C library sprintf()
//
//=========================================================
www.eeworm.com/read/367182/2853077
c nldbl-sprintf.c
#include "nldbl-compat.h"
int
attribute_hidden
sprintf (char *s, const char *fmt, ...)
{
va_list arg;
int done;
va_start (arg, fmt);
done = __nldbl_vsprintf (s, fmt, arg);
va_end (arg);
www.eeworm.com/read/366702/2878142
c sprintf-chk.c
/* Copyright (C) 2004, 2005 Free Software Foundation.
Ensure builtin __sprintf_chk performs correctly. */
extern void abort (void);
typedef __SIZE_TYPE__ size_t;
extern size_t strlen(const char