代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/238879/13317181
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/137132/13344268
c printf.c
/* Formatted output to strings, using POSIX/XSI format strings with positions.
Copyright (C) 2003 Free Software Foundation, Inc.
Written by Bruno Haible , 2003.
This program
www.eeworm.com/read/322906/13361524
c printf.c
#include
#include
#include
#include "printf.h"
#include "serl.h"
static unsigned char sprint_buf[1024];
int strnlen(const char * s, int count)
{
www.eeworm.com/read/322906/13361530
h printf.h
#ifndef __PRINTF_HH__
#define __PRINTF_HH__
void uart_printf(char *fmt, ...);
#endif
www.eeworm.com/read/321827/13396835
c printf.c
/***
*printf.c - print formatted
*
* Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* defines printf() - print formatted data
*
******************
www.eeworm.com/read/317374/13505370
c printf.c
www.eeworm.com/read/317374/13505443
doc printf.doc
www.eeworm.com/read/315327/13545883
c printf.c
#include "vsprintf.h"
#include "string.h"
#include "printf.h"
extern void putc(unsigned char c);
extern unsigned char getc(void);
#define OUTBUFSIZE 1024
#define INBUFSIZE 1024
static unsigned c
www.eeworm.com/read/315327/13545887
d printf.d
printf.o printf.d : printf.c vsprintf.h \
/work/friendly-arm_backup/friendly-arm/ARM_Projects/stdio/include/types.h \
string.h printf.h
www.eeworm.com/read/315327/13545892
h printf.h
#ifndef _PRINTF_H
#define _PRINTF_H
int printf(const char *fmt, ...);
int scanf(const char * fmt, ...);
#endif /* _PRINTF_H */