[chore] EVERYTHING!

This commit is contained in:
2026-05-10 20:34:38 +08:00
Unverified
parent e6ccc7cbcf
commit 9bf50d0e84
12 changed files with 82 additions and 21 deletions
+3 -1
View File
@@ -1,6 +1,8 @@
#pragma once
unsigned int strlen(char* arr) {
#define ASM asm volatile
static unsigned int strlen(const char* arr) { // 获取string长度
int i = 0;
while (arr[i++] != '\0');
return i - 1;