代码搜索:fprintf

找到约 10,000 项符合「fprintf」的源代码

代码结果 10,000
www.eeworm.com/read/229812/4744687

c fprintf.c

#include char *weekday = { "Saturday" }; char *month = { "April" }; void main() { fprintf( stdout, "%s, %s %d, %d\n", weekday, month, 18, 1987 ); }
www.eeworm.com/read/229812/4750919

gml fprintf.gml

.func fprintf fwprintf _ufprintf .funcw fwprintf #include int fprintf( FILE *fp, const char *format, ... ); .ixfunc2 '&StrIo' &func .if &'length(&wfunc.) ne 0 .do begin #include
www.eeworm.com/read/224327/4804029

c fprintf.c

/* fprintf.c - print to a file. stdio.h */ /* Copyright 1992-1995 Wind River Systems, Inc. */ /* modification history -------------------- 01e,24jan95,rhp doc: avoid 'L' in fprintf(), no long doubl
www.eeworm.com/read/216802/4880809

c fprintf.c

/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */ #include #include #include /* * @implemented */ int _ftprintf(register FILE *iop, const _T
www.eeworm.com/read/216502/4891831

c fprintf.c

#include fprintf(iop, fmt, args) FILE *iop; char *fmt; { _doprnt(fmt, &args, iop); return(ferror(iop)? EOF: 0); }
www.eeworm.com/read/216450/4893876

c fprintf.c

/* * fprintf - write output on a stream */ /* $Header: /cvsup/minix/src/lib/stdio/fprintf.c,v 1.1.1.1 2005/04/21 14:56:35 beng Exp $ */ #include #include #include "loc_incl.h"
www.eeworm.com/read/209211/4984860

c fprintf.c

/* * pANS stdio -- fprintf */ #include "iolib.h" int fprintf(FILE *f, const char *fmt, ...){ int n; va_list args; va_start(args, fmt); n=vfprintf(f, fmt, args); va_end(args); return n; }
www.eeworm.com/read/209211/4986572

c fprintf.c

/* * pANS stdio -- fprintf */ #include "iolib.h" int fprintf(FILE *f, const char *fmt, ...){ int n; va_list args; va_start(args, fmt); n=vfprintf(f, fmt, args); va_end(args); return n; }
www.eeworm.com/read/205824/5015694

c fprintf.c

/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */ #include #include #include /* * @implemented */ int _ftprintf(register FILE *iop, const _T
www.eeworm.com/read/178760/5312823

c fprintf.c

/*----------------------------------------------------------------- fprintf.c - Written for pic16 port, by Vangelis Rokas, 2005 (vrokas@otenet.gr) This library is free software; you