我有以下代码从命令行读取参数。如果字符串的格式为hw:1,0我想要破解。
gboolean parse_one_option (gint opt, const gchar * arg, GError ** err)
{
switch (opt) {
case DEVICE:
if (!strncmp(arg, "hw:", 3) && isdigit(arg[3]) && arg[4] == ',' && isdigit(arg[5])) {
char *device = g_strdup (arg);
break;
break;
编译器给了我一个警告:
warning: implicit declaration of function 'isdigit' is invalid in C99 [-Wimplicit-function-declaration]
if (!strncmp(arg, "hw:", 3) && isdigit(arg[3]) && arg[4] == ',' && isdigit(arg[5])) {
^
和另一个问题:
将g_strdup与GOptionContext结合使用是正确的
答案 0 :(得分:9)
您需要#include <ctype.h>
才能使此功能/宏可用。