1 Star 0 Fork 8

thineagle/Xipkpublib_Update

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
XipIsonlynum.c 467 Bytes
一键复制 编辑 原始数据 按行查看 历史
suitianmou 提交于 2016-03-22 08:56 . add some new func
/*******************#XipIsonlynum#******************
*函 数 名: XipIsonlynum
*函数功能: 检查一个字符串是否由仅数字字符组成
*函数作者: zhangl
*版 本 号: 1.0.0
*创建日期: 20160317
******************************************************/
#include "kernel/syspub.h"
#include "kernel/xipcmstc.h"
int XipIsonlynum(char *msg)
{
int i=0;
for(i=0;i<strlen(msg);i++)
{
if(msg[i]<'0' || msg[i]>'9')
return -5;
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/thineagle/Xipkpublib_Update.git
git@gitee.com:thineagle/Xipkpublib_Update.git
thineagle
Xipkpublib_Update
Xipkpublib_Update
master

搜索帮助