1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/source3/aparser/util.awk
Andrew Tridgell eee003da6a started adding support for relative, plus options for autoalignment
so the same parser generator can be uses for cifs and rpc
(This used to be commit c7829fa0d8)
2000-06-09 02:59:50 +00:00

40 lines
575 B
Awk

function isaptr(elem)
{
if (substr(elem, 1, 1) == "*") {
return 1;
}
return 0;
}
function noptr(elem)
{
if (!isaptr(elem)) return elem;
return substr(elem, 2);
}
function xprintf(f, fmt, v1, v2, v3, v4, v5, v6, v7)
{
printf(fmt, v1, v2, v3, v4, v5, v6) > f;
}
function fatal(why)
{
printf("FATAL: %s\n", why);
exit 1;
}
function numlines(fname,
LOCAL, line, count)
{
count=0;
while ((getline line < fname) > 0) count++;
close(fname);
return count;
}
# return 1 if the string is a constant
function is_constant(s)
{
return match(s,"^[0-9]+$");
}