代码搜索:printf

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

代码结果 10,000
www.eeworm.com/read/172774/5382080

c printf.c

#include #include #include #include "_stdio.h" #if defined(_HC12) #pragma nonpaged_function putchar #endif int printf(CONST char *fmt, ...) { va_list va
www.eeworm.com/read/169309/5425512

c printf.c

/* Copyright 2001-2004 Georges Menie (www.menie.org) This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as publ
www.eeworm.com/read/167890/5451458

c printf.c

// This file is part of MANTIS OS, Operating System // See http://mantis.cs.colorado.edu/ // // Copyright (C) 2003,2004,2005 University of Colorado, Boulder // // This program is free software; yo
www.eeworm.com/read/167890/5451462

h printf.h

// This file is part of MANTIS OS, Operating System // See http://mantis.cs.colorado.edu/ // // Copyright (C) 2003,2004,2005 University of Colorado, Boulder // // This program is free software; yo
www.eeworm.com/read/167657/5454981

c printf.c

#include int main() { int i; for (i=0;i
www.eeworm.com/read/167562/5458096

c printf.c

/* ** The "printf" code that follows dates from the 1980's. It is in ** the public domain. The original comments are included here for ** completeness. They are very out-of-date but might be useful
www.eeworm.com/read/163844/5507834

c printf.c

/* * File: printk.c * Purpose: The standard C library routine printf(), but without * all the baggage. */ #include "src/init/m5282evb.h" #include "src/init/stdlib.h" #include
www.eeworm.com/read/162614/5526765

c printf.c

#include #include extern void abort (void); extern int inside_main; int printf (const char *string, ...) { va_list ap; int r; #ifdef __OPTIMIZE__ if (inside_main) abort
www.eeworm.com/read/162614/5526821

c printf.c

/* Copyright (C) 2000 Free Software Foundation. Ensure all expected transformations of builtin printf occur and that we honor side effects in the arguments. Written by Kaveh R. Ghazi, 12/4
www.eeworm.com/read/350097/3128019

c printf.c

/* * printf.c: Putting things on the screen using SGI arcs * PROM facilities. * * Copyright (C) 1996 David S. Miller (dm@sgi.com) * * $Id: printf.c,v 1.3 1999/10/09 00:00:57 ralf Exp $