代码搜索:printf

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

代码结果 10,000
www.eeworm.com/read/345605/11802559

doc printf.doc

www.eeworm.com/read/156186/11822741

c printf.c

//######################################################################### // printf.c // // printf() based on sprintf() from gcctest9.c Volker Oth // // Changes made: // Now takes format strin
www.eeworm.com/read/156186/11822792

h printf.h

//######################################################################### // PRINTF.H // //######################################################################### // Last change: 21.04.2003 /
www.eeworm.com/read/345044/11845466

asm printf.asm

www.eeworm.com/read/344684/11867850

c _printf.c

/* printf using RAM string */ #define ATOI atoi #define _PRINT _print #define XCONST #define AVR_DOIT #include "../libsrc.common/stdio/_printf.c"
www.eeworm.com/read/155317/11884996

c _printf.c

/* printf using RAM string */ #define ATOI atoi #define _PRINT _print #define XCONST #define AVR_DOIT #include "../libsrc.common/stdio/_printf.c"
www.eeworm.com/read/155317/11885239

c _printf.c

/* For AVR, do not compile this file standalone in libsrc.common\stdio */ #if !defined(_AVR) || defined(AVR_DOIT) #include #include #include #include
www.eeworm.com/read/155317/11885246

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/155143/11895623

h printf.h

#ifndef __PRTF_H__ #define __PRTF_H__ // write your header here extern void Printf_Init(unsigned int Port_Number); extern int Printf(char *format,...); extern void Printf_End(); #endif
www.eeworm.com/read/154878/11921301

lua printf.lua

-- an implementation of printf function printf(...) io.write(string.format(unpack(arg))) end printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())