This file is indexed.

/usr/include/scilab/api_common.h is in scilab-include 5.3.3-10.

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
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/*
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 * Copyright (C) 2009 - DIGITEO - Antoine ELIAS
  * Copyright (C) 2009 - DIGITEO - Allan CORNET
 *
 * This file must be used under the terms of the CeCILL.
 * This source file is licensed as described in the file COPYING, which
 * you should have received as part of this distribution.  The terms
 * are also available at
 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
 */

#ifndef __COMMON_API__
#define __COMMON_API__

#ifdef __cplusplus
extern "C" {
#endif

	/**
	 * The error management structure
	 *
	 */

#define MESSAGE_STACK_SIZE 5

typedef struct api_Err
{
	int iErr; /**< The error ID */
	int iMsgCount; /**< Error level */
	char* pstMsg[MESSAGE_STACK_SIZE]; /**< The error message */
} SciErr;

typedef struct api_Ctx
{
	char* pstName; /**< Function name */
} StrCtx, *pStrCtx;

#ifdef _MSC_VER
	#ifndef API_SCILAB_EXPORTS
		__declspec( dllimport ) StrCtx* pvApiCtx;
	#endif
#else
	extern StrCtx* pvApiCtx;
#endif

#include "api_error.h"
/* generics functions */

/**
 * Get the memory address of a variable from the variable position
 * @param[in] _iVar variable number
 * @param[out] _piAddress return variable address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getVarAddressFromPosition(void* _pvCtx, int _iVar, int** _piAddress);

/**
 * Get the name of a variable from the variable position
 * @param[in] _iVar variable number
 * @param[out] _pstName variable name
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getVarNameFromPosition(void* _pvCtx, int _iVar, char* _pstName);

/**
 * Get the memory address of a variable from the variable name
 * @param[in] _pstName variable name
 * @param[out] _piAddress return variable address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getVarAddressFromName(void* _pvCtx, const char* _pstName, int** _piAddress);

/**
 * Get the variable type
 * @param[in] _piAddress variable address
 * @param[out] _piType return variable type ( sci_matrix, sci_strings, ... )
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getVarType(void* _pvCtx, int* _piAddress, int* _piType);

/**
 * Get the variable type from the variable name
 * @param[in] _pstName variable name
 * @param[out] _piType return variable type ( sci_matrix, sci_strings, ... )
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getNamedVarType(void* _pvCtx, const char* _pstName, int* _piType);

/**
 * Check if the variable type is complex double, complex sparse double or complex polynomial
 * @param[in] _piAddress variable address
 * @return if complex 1 otherwise 0
 */
int isVarComplex(void* _pvCtx, int* _piAddress);

/**
* Check if the named variable type is complex double, complex sparse double or complex polynomial
* @param[in] _pstName variable name
* @return if complex 1 otherwise 0
*/
int isNamedVarComplex(void* _pvCtx, const char *_pstName);

/**
 * Get variable dimensions
 * @param[in] _piAddress variable address
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of cols
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getVarDimension(void* _pvCtx, int* _piAddress, int* _piRows, int* _piCols);

/**
 * Get named variable dimensions
 * @param[in] _pstName variable name
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of cols
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getNamedVarDimension(void* _pvCtx, const char *_pstName, int* _piRows, int* _piCols);

/**
 * Check if a variable is a matrix form ( row x col )
 * @param[in] _piAddress variable address
 * @return if matrix form type variable 1 otherwise 0
 */
int isVarMatrixType(void* _pvCtx, int* _piAddress);

/**
 * Check if a named variable is a matrix form ( row x col )
 * @param[in] _pstName variable name
 * @return if matrix form type variable 1 otherwise 0
 */
int isNamedVarMatrixType(void* _pvCtx, const char *_pstName);

/**
 * Get process mode from input variable
 * @param[in] _iPos variable position in function call
 * @param[in] _piAddRef variable address
 * @param[out] _piMode return process mode ( 0 -> All, 1 -> Row, 2 -> Col )
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getProcessMode(void* _pvCtx, int _iPos, int* _piAddRef, int *_piMode);

/**
 * Get dimension for variable, extract value from a single value
 * @param[in] _piAddress variable address ( double or int variable )
 * @param[out] _piVal return value
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getDimFromVar(void* _pvCtx, int* _piAddress, int* _piVal);

/**
 * Get dimension for a named variable, extract value from a single value
 * @param[in] _pstName variable name
 * @param[out] _piVal return value
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getDimFromNamedVar(void* _pvCtx, const char* _pstName, int* _piVal);

/**
 * Get Rhs value from variable address
 * @param[in] _piAddress varaible address
 * @return rhs value of the variable, if failed returns 0
 */
int getRhsFromAddress(void* _pvCtx, int* _piAddress);

/**
 * Check if a variable is a row vector
 * @param[in] _piAddress variable address
 * @return 1 for true and 0 for false
 */
int isRowVector(void* _pvCtx, int* _piAddress);

/**
 * Check if a variable is a column vector
 * @param[in] _piAddress variable address
 * @return 1 for true and 0 for false
 */
int isColumnVector(void* _pvCtx, int* _piAddress);

/**
 * Check if a variable is a vector ( row or column )
 * @param[in] _piAddress variable address
 * @return 1 for true and 0 for false
 */
int isVector(void* _pvCtx, int* _piAddress);

/**
 * Check if a variable is a scalar
 * @param[in] _piAddress variable address
 * @return 1 for true and 0 for false
 */
int isScalar(void* _pvCtx, int* _piAddress);

/**
 * Check if a variable is a square matrix
 * @param[in] _piAddress variable address
 * @return 1 for true and 0 for false
 */
int isSquareMatrix(void* _pvCtx, int* _piAddress);

/**
 * Check matrix dimension
 * @param[in] _piAddress variable address
 * @param[in] _iRows accepted number of rows ( if -1, don't check )
 * @param[in] _iCols accepted number of columns ( if -1, don't check )
 * @return 1 for true and 0 for false
 */
int checkVarDimension(void* _pvCtx, int* _piAddress, int _iRows, int _iCols);

/**
 * Check if a matrix is empty
 * @param[in] _piAddress variable address
 * @return 1 for true and 0 for false
 */
int isEmptyMatrix(void* _pvCtx, int* _piAddress);

/**
 * Create an empty matrix
 * @param[in] _iVar variable number
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
int createEmptyMatrix(void* _pvCtx, int _iVar);

/**
 * Create a named empty matrix
 * @param[in] _pstName variable name
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
int createNamedEmptyMatrix(void* _pvCtx, const char* _pstName);

/**
 * Check if a named variable exists
 * @param[in] _pstName variable name
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
int isNamedVarExist(void* _pvCtx, const char* _pstName);

/**
 * Check if a named variable is a row vector
 * @param[in] _pstName variable name
 * @return 1 for true and 0 for false
 */
int isNamedRowVector(void* _pvCtx, const char* _pstName);

/**
 * Check if a named variable is a column vector
 * @param[in] _pstName variable name
 * @return 1 for true and 0 for false
 */
int isNamedColumnVector(void* _pvCtx, const char* _pstName);

/**
 * Check if a named variable is a vector ( row or column )
 * @param[in] _pstName variable name
 * @return 1 for true and 0 for false
 */
int isNamedVector(void* _pvCtx, const char* _pstName);

/**
 * Check if a named variable is a scalar
 * @param[in] _pstName variable name
 * @return 1 for true and 0 for false
 */
int isNamedScalar(void* _pvCtx, const char* _pstName);

/**
 * Check if a named variable is a square matrix
 * @param[in] _pstName variable name
 * @return 1 for true and 0 for false
 */
int isNamedSquareMatrix(void* _pvCtx, const char* _pstName);

/**
 * Check if a named variable is an empty matrix
 * @param[in] _pstName variable name
 * @return 1 for true and 0 for false
 */
int isNamedEmptyMatrix(void* _pvCtx, const char* _pstName);

#ifdef __cplusplus
}
#endif
#endif /* __COMMON_API__ */