0

我有以下代码从命令行读取参数。如果字符串是这种形式 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 结合使用是正确的

4

1 回答 1

9

您需要#include <ctype.h>此功能/宏可用。

于 2013-08-27T04:55:26.517 回答