1 Star 0 Fork 0

AT32437_OpenHarmony/device

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
dprintf.c 1008 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include <stdarg.h>
#include <stdio.h>
#include "securec.h"
#include "los_interrupt.h"
unsigned int intSave = 0;
//print函数的buffer大小
#define BUFSIZE 512
static void dputs(char const *s, int (*pFputc)(int n, FILE *cookie), void *cookie)
{
intSave = LOS_IntLock();
while (*s) {
pFputc(*s++, cookie);
}
LOS_IntRestore(intSave);
}
int printf(const char *__restrict __format, ...)
{
char buf[BUFSIZE] = { 0 };
int len;
va_list ap;
va_start(ap, __format);
len = vsnprintf_s(buf, sizeof(buf), BUFSIZE - 1, __format, ap);
va_end(ap);
if(len > 0) {
dputs(buf, fputc, 0);
} else {
dputs("printf error!\n", fputc, 0);
}
return len;
}
int sprintf(char *__restrict __s, const char *__restrict __format, ...)
{
va_list args;
int val;
va_start(args, __format);
val = vsprintf_s(__s, BUFSIZE - 1, __format, args);
va_end(args);
return val;
}
int fsync(int fd)
{
(void *)fd;
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/AT32437_OpenHarmony/device.git
git@gitee.com:AT32437_OpenHarmony/device.git
AT32437_OpenHarmony
device
device
master

搜索帮助