10 lines
220 B
C
10 lines
220 B
C
#pragma once
|
|
|
|
#define ASM asm volatile
|
|
#define COLOR_RGB EFI_GRAPHICS_OUTPUT_BLT_PIXEL
|
|
|
|
static unsigned int strlen(const char* arr) { // 获取string长度
|
|
int i = 0;
|
|
while (arr[i++] != '\0');
|
|
return i - 1;
|
|
} |