代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/213708/4913132
awk process.awk
#!/usr/local/bin/gawk -f
BEGIN {
erriter = -1;
}
{
iter = $1;
if (iter == erriter)
next;
s = "";
i = 2;
while (index($i,"-")) {
s = sprintf("%s %s", s, $i);
i++;
}
s = sprintf("%s %s
www.eeworm.com/read/307320/3724448
awk process.awk
#!/usr/local/bin/gawk -f
BEGIN {
erriter = -1;
}
{
iter = $1;
if (iter == erriter)
next;
s = "";
i = 2;
while (index($i,"-")) {
s = sprintf("%s %s", s, $i);
i++;
}
s = sprintf("%s %s
www.eeworm.com/read/301403/3840397
awk process.awk
#!/usr/local/bin/gawk -f
BEGIN {
erriter = -1;
}
{
iter = $1;
if (iter == erriter)
next;
s = "";
i = 2;
while (index($i,"-")) {
s = sprintf("%s %s", s, $i);
i++;
}
s = sprintf("%s %s
www.eeworm.com/read/298155/3874906
dat funtc267.dat
函数名称: sprintf
函数原型: int sprintf (char *buffer, const char *format, … )
函数功能: buffer写入的缓冲区
函数返回:
函数说明:
所属文件:
www.eeworm.com/read/290228/3983582
awk process.awk
#!/usr/local/bin/gawk -f
BEGIN {
erriter = -1;
}
{
iter = $1;
if (iter == erriter)
next;
s = "";
i = 2;
while (index($i,"-")) {
s = sprintf("%s %s", s, $i);
i++;
}
s = sprintf("%s %s
www.eeworm.com/read/440226/1799255
awk process.awk
#!/usr/local/bin/gawk -f
BEGIN {
erriter = -1;
}
{
iter = $1;
if (iter == erriter)
next;
s = "";
i = 2;
while (index($i,"-")) {
s = sprintf("%s %s", s, $i);
i++;
}
s = sprintf("%s %s
www.eeworm.com/read/429717/1946467
awk process.awk
#!/usr/local/bin/gawk -f
BEGIN {
erriter = -1;
}
{
iter = $1;
if (iter == erriter)
next;
s = "";
i = 2;
while (index($i,"-")) {
s = sprintf("%s %s", s, $i);
i++;
}
s = sprintf("%s %s
www.eeworm.com/read/389028/2545047
awk process.awk
#!/usr/local/bin/gawk -f
BEGIN {
erriter = -1;
}
{
iter = $1;
if (iter == erriter)
next;
s = "";
i = 2;
while (index($i,"-")) {
s = sprintf("%s %s", s, $i);
i++;
}
s = sprintf("%s %s
www.eeworm.com/read/380709/2653088
awk process.awk
#!/usr/local/bin/gawk -f
BEGIN {
erriter = -1;
}
{
iter = $1;
if (iter == erriter)
next;
s = "";
i = 2;
while (index($i,"-")) {
s = sprintf("%s %s", s, $i);
i++;
}
s = sprintf("%s %s
www.eeworm.com/read/366702/2878472
c 20070201-1.c
/* PR middle-end/30473 */
extern int sprintf (char *, const char *, ...);
extern void abort (void);
char *
foo (char *buf, char *p)
{
sprintf (buf, "abcde", p++);
return p;
}
int
main (void)
{