Home | History | Annotate | Download | only in libxtables

Lines Matching defs:cur

1112 	char *cur, *nxt;
1120 cur = buf;
1121 while (isspace(*cur))
1122 ++cur;
1123 if (*cur == '#' || *cur == '\n' || *cur == '\0')
1128 id = strtoul(cur, &nxt, strncmp(cur, "0x", 2) == 0 ? 16 : 10);
1129 if (nxt == cur || errno != 0)
1135 cur = nxt;
1137 if (!isspace(*cur))
1139 while (isspace(*cur))
1140 ++cur;
1141 if (*cur == '#' || *cur == '\n' || *cur == '\0')
1143 nxt = cur;
1146 if (nxt == cur)
1157 lmap_this->name = strdup(cur);