new:chardev的挂载

This commit is contained in:
fslongjin
2022-09-10 00:18:18 +08:00
parent 7d510a2f86
commit ef7d20c0fb
16 changed files with 412 additions and 75 deletions

9
kernel/common/stdlib.h Normal file
View File

@ -0,0 +1,9 @@
#pragma once
/**
* @brief 将长整型转换为字符串
*
* @param input 输入的数据
* @return const char* 结果字符串
*/
const char* ltoa(long input);