mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
9 lines
242 B
Text
9 lines
242 B
Text
|
|
#this function checks if the function code is exception (ie. normal fc are 1-127, exception codes are >127)
|
|
# e.g, fc=128 implies exception repsonse for fc=1
|
|
function check_e(a:count):count
|
|
{
|
|
if (a>127) a=a-128;
|
|
return a;
|
|
}
|
|
|