⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sprintf.c

📁 在x86平台上运行不可信任代码的sandbox。
💻 C
字号:
#include <stdio.h>#include <errno.h>#include "ioprivate.h"struct sprintbuf {	char *buf;};static intsprintputch(int ch, struct sprintbuf *b){	*b->buf++ = ch;	return 0;}intvsprintf(char *buf, const char *fmt, va_list ap){	struct sprintbuf b = {buf};	if (buf == NULL) {		errno = EINVAL;		return -1;	}	// print the string to the buffer	int cnt = vprintfmt((void*)sprintputch, &b, fmt, ap);	// null terminate the buffer	*b.buf = '\0';	return cnt;}intsprintf(char *buf, const char *fmt, ...){	va_list ap;	int rc;	va_start(ap, fmt);	rc = vsprintf(buf, fmt, ap);	va_end(ap);	return rc;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -