This file is indexed.

/usr/include/yacas/errors.h is in yacas 1.3.6-2+b1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef YACAS_ERRORS_H
#define YACAS_ERRORS_H

void CheckArg(bool pred, LispInt arg_idx, LispEnvironment& env, LispInt stack_top);

void CheckArgIsString(LispPtr arg, LispInt arg_idx, LispEnvironment& env, LispInt stack_top);
void CheckArgIsString(LispInt arg_idx, LispEnvironment& env, LispInt stack_top);

void CheckArgIsList(LispPtr arg, LispInt arg_idx, LispEnvironment& env, LispInt stack_top);
void CheckArgIsList(LispInt arg_idx, LispEnvironment& env, LispInt stack_top);

void CheckNrArgs(LispInt n, LispPtr& aArguments, LispEnvironment& aEnvironment);

void ShowStack(LispEnvironment& aEnvironment);

void ShowFunctionError(LispPtr& aArguments, LispEnvironment& aEnvironment);


void CheckSecure(LispEnvironment& env, LispInt stack_top);


#endif