代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/264310/11319836
doc printf.doc
www.eeworm.com/read/264074/11330580
c printf.c
www.eeworm.com/read/264074/11330674
doc printf.doc
www.eeworm.com/read/263675/11348336
c printf.c
/*
* File: printk.c
* Purpose: The standard C library routine printf(), but without
* all the baggage.
*/
#include "src/common/common.h"
#include
/**********************
www.eeworm.com/read/405687/11459363
c printf.c
#include "vsprintf.h"
#include "printf.h"
#include "string.h"
extern void putc(unsigned char c);
extern unsigned char getc(void);
#define OUTBUFSIZE 1024
#define INBUFSIZE 1024
static unsigned cha
www.eeworm.com/read/405687/11459368
h printf.h
#ifndef _PRINTF_H
#define _PRINTF_H
int printf(const char *fmt, ...);
int scanf(const char * fmt, ...);
#endif /* _PRINTF_H */
www.eeworm.com/read/404808/11477824
lua printf.lua
-- an implementation of printf
function printf(...)
io.write(string.format(...))
end
printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())
www.eeworm.com/read/404228/11489754
c printf.c
/*
* Copyright (C) 2001 MontaVista Software Inc.
* Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
*
* This program is free software; you can redistribute it and/or modify it
* under the te