代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/102935/6227561
c proc_rtas.c
/*
* BK Id: SCCS/s.proc_rtas.c 1.5 05/17/01 18:14:22 cort
*/
/*
* arch/ppc/kernel/proc_rtas.c
* Copyright (C) 2000 Tilmann Bitterberg
* (tilmann@bitterberg.de)
*
* RTAS (Runtime Abstrac
www.eeworm.com/read/102935/6227756
c ppc_htab.c
/*
* BK Id: SCCS/s.ppc_htab.c 1.19 10/16/01 15:58:42 trini
*/
/*
* PowerPC hash table management proc entry. Will show information
* about the current hash table and will allow changes to it.
*
www.eeworm.com/read/102935/6228992
c aic7xxx_proc.c
/*+M*************************************************************************
* Adaptec AIC7xxx device driver proc support for Linux.
*
* Copyright (c) 1995, 1996 Dean W. Gehnert
*
* This program
www.eeworm.com/read/102496/6231239
c pip_for_fb.c
#include "bbs.h"
//#define cuser currentuser
enum
{STRIP_ALL, ONLY_COLOR, NO_RELOAD};
int //patch for MagicBBS by Magi
clrchyiuan(int start,int end)
{
move(start,0);
clrnlines(end-start);
}
int
www.eeworm.com/read/101082/6240922
h syntax.h
/* --------------------------------------------------------- */
/* | Copyright (c) 1986, 1989 MIPS Computer Systems, Inc. | */
/* | All Rights Reserved. | */
/* -----
www.eeworm.com/read/101082/6241256
c tmpnam.c
/* @(#)tmpnam.c 4.1 (Berkeley) 12/21/80 */
char *tmpnam(s)
char *s;
{
static seed;
sprintf(s, "temp.%d.%d", getpid(), seed++);
return(s);
}
www.eeworm.com/read/101082/6241893
mk makelocal.mk
# @(#)Makelocal.mk 4.1 ULTRIX 7/3/90
include $(GMAKEVARS)
COMMON= doopen.c doscan.c \
fclose.c fdopen.c fopen.c fprintf.c fread.c freopen.c fwrite.c \
printf.c scanf.c sprintf.c ungetc.c
OBJS= do
www.eeworm.com/read/101082/6241933
c escapes.c
#ifndef lint
static char *sccsid = "@(#)escapes.c 4.1 ULTRIX 7/2/90";
#endif
/************************************************************************
* *
* Copyright (c) 1988 by *
*
www.eeworm.com/read/101082/6242506
c movecurs.c
/* movecurs.c 4.1 83/03/09 */
#include "2648.h"
movecurs(x, y)
{
char mes[20];
if (x==_curx && y==_cury)
return;
sprintf(mes, "%d,%do", x, y);
escseq(ESCD);
outstr(mes);
escseq(NONE);
_cur
www.eeworm.com/read/101082/6242526
c agoto.c
/* agoto.c 4.1 83/03/09 */
/*
* position the alphanumeric cursor to (x, y).
*/
#include "2648.h"
agoto(x, y)
int x, y;
{
char mes[20];
sprintf(mes, "\33*dE\33&a%dr%dC", x, y);
outstr(mes);
}
/