代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/125223/14505573
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/11569/230929
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/13871/284441
m sprintf_intvec.m
function s = sprintf_intvec(v)
% SPRINTF_INTVEC Print a vector of ints as comma separated string, with no trailing comma
% function s = sprintf_intvec(v)
%
% e.g., sprintf_intvec(1:3) returns '1,2
www.eeworm.com/read/470917/1441773
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/248727/4465081
d sprintf.o.d
src/common/sprintf.o.d: \
/opt/ecos/ecos-2.0.57/packages/language/c/libc/stdio/current/src/common/sprintf.cxx \
/home/Administrator/FFT/target/PLCcore-CF54/ecos/ecos_install/include/pkgconf/libc_s
www.eeworm.com/read/237551/4625894
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/233554/4666359
h ntp_sprintf.h
/*
* Handle ancient char* *s*printf*() systems
*/
#ifdef SPRINTF_CHAR
# define SPRINTF(x) strlen(sprintf/**/x)
# define SNPRINTF(x) strlen(snprintf/**/x)
# define VSNPRINTF(x) strlen(vsnprintf/**/x
www.eeworm.com/read/177477/5325600
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