4
1
mirror of https://github.com/DragonOS-Community/DragonOS.git synced 2025-06-19 17:26:31 +00:00
Files
DragonOS/kernel/common/stdlib.h
2022-09-10 00:18:18 +08:00

9 lines
167 B
C

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