mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 19:36:47 +00:00
9 lines
167 B
C
9 lines
167 B
C
#pragma once
|
|
|
|
/**
|
|
* @brief 将长整型转换为字符串
|
|
*
|
|
* @param input 输入的数据
|
|
* @return const char* 结果字符串
|
|
*/
|
|
const char* ltoa(long input); |