*/
if (strlen(entry->d_name) >= 5) {
if (STRPREFIX(entry->d_name, VIR_NET_GENERATED_TAP_PREFIX) &&
- c_isdigit(entry->d_name[4]))
+ g_ascii_isdigit(entry->d_name[4]))
return 0;
}
#include "internal.h"
#include "virlog.h"
#include "virerror.h"
-#include "c-ctype.h"
#include "datatypes.h"
#include "virconf.h"
#include "virfile.h"
char *p = mem_tokens[j] + 4;
unsigned long long multiplier = 1;
- while (c_isdigit(*p))
+ while (g_ascii_isdigit(*p))
p++;
if (virStrToLong_ull(mem_tokens[j] + 4, &p, 10, maxmem) < 0)
break;
#include "virutil.h"
#include "virfile.h"
-#include "c-ctype.h"
#include "virstring.h"
#include "virgettext.h"
* path, then append the "p" partition separator. Otherwise, if
* the path ends with a letter already, then no need for a separator.
*/
- if (c_isdigit(path[strlen(path)-1]) || devmap_partsep)
+ if (g_ascii_isdigit(path[strlen(path)-1]) || devmap_partsep)
partsep = "p";
else
partsep = "";
return 2;
partsep = *canonical_path &&
- c_isdigit(canonical_path[strlen(canonical_path)-1]) ? "p" : "";
+ g_ascii_isdigit(canonical_path[strlen(canonical_path)-1]) ? "p" : "";
}
if ((dev = ped_device_get(path)) == NULL) {
#include "virbitmap.h"
#include "viralloc.h"
#include "virbuffer.h"
-#include "c-ctype.h"
#include "virstring.h"
#include "virutil.h"
#include "virerror.h"
neg = true;
}
- if (!c_isdigit(*cur))
+ if (!g_ascii_isdigit(*cur))
goto error;
if (virStrToLong_i(cur, &tmp, 10, &start) < 0)
neg = true;
}
- if (!c_isdigit(*cur))
+ if (!g_ascii_isdigit(*cur))
goto error;
if (virStrToLong_i(cur, &tmp, 10, &start) < 0)
#include "virbuffer.h"
#include "virconf.h"
#include "virutil.h"
-#include "c-ctype.h"
#include "virlog.h"
#include "viralloc.h"
#include "virfile.h"
} else if (CUR == '+') {
NEXT;
}
- if ((ctxt->cur >= ctxt->end) || (!c_isdigit(CUR))) {
+ if ((ctxt->cur >= ctxt->end) || (!g_ascii_isdigit(CUR))) {
virConfError(ctxt, VIR_ERR_CONF_SYNTAX, _("unterminated number"));
return -1;
}
- while ((ctxt->cur < ctxt->end) && (c_isdigit(CUR))) {
+ while ((ctxt->cur < ctxt->end) && (g_ascii_isdigit(CUR))) {
l = l * 10 + (CUR - '0');
NEXT;
}
virConfFreeList(lst);
return NULL;
}
- } else if (c_isdigit(CUR) || (CUR == '-') || (CUR == '+')) {
+ } else if (g_ascii_isdigit(CUR) || (CUR == '-') || (CUR == '+')) {
if (ctxt->conf->flags & VIR_CONF_FLAG_VMX_FORMAT) {
virConfError(ctxt, VIR_ERR_CONF_SYNTAX,
_("numbers not allowed in VMX format"));
#include "virstring.h"
#include "virutil.h"
-#include "c-ctype.h"
-
#define VIR_FROM_THIS VIR_FROM_NONE
VIR_LOG_INIT("util.file");
* new kernels have a dev named 'loop-control'
*/
if (!STRPREFIX(de->d_name, "loop") ||
- !c_isdigit(de->d_name[4]))
+ !g_ascii_isdigit(de->d_name[4]))
continue;
looppath = g_strdup_printf("/dev/%s", de->d_name);