#pragma once

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