1 #pragma once 2 3 /** 4 * @brief 将长整型转换为字符串 5 * 6 * @param input 输入的数据 7 * @return const char* 结果字符串 8 */ 9 const char* ltoa(long input);