加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
support.c 914 Bytes
一键复制 编辑 原始数据 按行查看 历史
Michal Moskal 提交于 2018-12-11 10:02 . Smaller bootloader
// This saves over 1kb
#include <string.h>
#include <stdint.h>
void *memmove(void *dst0, const void *src0, size_t len) {
char *dst = dst0;
const char *src = src0;
if (src < dst) {
src += len;
dst += len;
while (len--)
*--dst = *--src;
} else if (src != dst) {
while (len--)
*dst++ = *src++;
}
return dst0;
}
void *memcpy(void *dst0, const void *src0, size_t len) __attribute__((alias("memmove")));
void *memset(void *s, int c, size_t n) {
uint8_t *p = s;
while (n--)
*p++ = c;
return s;
}
size_t strlen(const char *s) {
const char *s0 = s;
while (*s++)
;
return (s - s0) - 1;
}
int memcmp(const void *aa, const void *bb, size_t n)
{
const uint8_t *a = aa;
const uint8_t *b = bb;
while (n--) {
if (*a != *b)
return (int)*a - (int)*b;
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化