args = cp+1;
goto gotit;
}
-
+ if ('_' == *arg_string) /* Force a string copy if the argument name begins with an underscore */
+ {
+ argstrcpy2 (++cp, (char *)arg_ptr, 16); /* Hack - terminate after 16 characters */
+ arg_found = TRUE;
+ break;
+ }
switch (getval(cp, &val))
{
case NUM:
return(i);
}
+int
+argstrcpy2(
+ char *from,
+ char *to,
+ unsigned maxlen)
+{
+ int i = 0;
+
+ while (!isargsep(*from) && i < maxlen) {
+ i++;
+ *to++ = *from++;
+ }
+ *to = 0;
+ return(i);
+}
+
int
getval(
char *s,
c -= 'a' - 10;
else if ((c >= 'A') && (c <= 'F'))
c -= 'A' - 10;
+ else if (c == 'k' || c == 'K')
+ { sign *= 1024; break; }
+ else if (c == 'm' || c == 'M')
+ { sign *= 1024 * 1024; break; }
+ else if (c == 'g' || c == 'G')
+ { sign *= 1024 * 1024 * 1024; break; }
else if (isargsep(c))
break;
else