字符串大写

支持芯片: SHMICTRL系列芯片 ESP32-S3系列

str strtolower(str s); 
//s: 主字符串
//返回:小写后的字符串;

示例

str s="HELLO 中国";
s=strtolower(s);
echo (s);

注意