This file is indexed.

/usr/include/scilab/stringToDouble.h is in scilab-include 6.0.1-1ubuntu1.

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
/*
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 * Copyright (C) 2010-2011 - DIGITEO - Allan CORNET
 *
 * Copyright (C) 2012 - 2016 - Scilab Enterprises
 *
 * This file is hereby licensed under the terms of the GNU GPL v2.0,
 * pursuant to article 5.3.4 of the CeCILL v.2.1.
 * This file was originally licensed under the terms of the CeCILL v2.1,
 * and continues to be available under such terms.
 * For more information, see the COPYING file which you should have received
 * along with this program.
 *
 * This code is also published under the GPL v3 license.
 *
 */
#ifndef __STRINGTODOUBLE_H__
#define __STRINGTODOUBLE_H__

#include "dynlib_string.h"
#include "BOOL.h"
#include <wchar.h>

#define NanString "Nan"
#define NanStringW L"Nan"
#define InfString "Inf"
#define InfStringW L"Inf"
#define NegInfString "-Inf"
#define NegInfStringW L"-Inf"
#define PosInfString "+Inf"
#define PosInfStringW L"+Inf"
#define NegNanString "-Nan" /* no sense but used by some users */
#define NegNanStringW L"-Nan" /* no sense but used by some users */
#define PosNanString "+Nan" /* no sense but used by some users */
#define PosNanStringW L"+Nan" /* no sense but used by some users */
#define ScilabNanString "%nan"
#define ScilabNanStringW L"%nan"
#define ScilabInfString "%inf"
#define ScilabInfStringW L"%inf"
#define ScilabNegInfString "-%inf"
#define ScilabNegInfStringW L"-%inf"
#define ScilabPosInfString "+%inf"
#define ScilabPosInfStringW L"+%inf"
#define ScilabNegNanString "-%nan" /* no sense but used by some users */
#define ScilabNegNanStringW L"-%nan" /* no sense but used by some users */
#define ScilabPosNanString "+%nan" /* no sense but used by some users */
#define ScilabPosNanStringW L"+%nan" /* no sense but used by some users */
#define ScilabPiString "%pi"
#define ScilabPiStringW L"%pi"
#define ScilabNegPiString "-%pi"
#define ScilabNegPiStringW L"-%pi"
#define ScilabPosPiString "+%pi"
#define ScilabPosPiStringW L"+%pi"
#define ScilabEString "%e"
#define ScilabEStringW L"%e"
#define ScilabPosEString "+%e"
#define ScilabPosEStringW L"+%e"
#define ScilabNegEString "-%e"
#define ScilabNegEStringW L"-%e"
#define ScilabEpsString "%eps"
#define ScilabEpsStringW L"%eps"
#define ScilabPosEpsString "+%eps"
#define ScilabPosEpsStringW L"+%eps"
#define ScilabNegEpsString "-%eps"
#define ScilabNegEpsStringW L"-%eps"

#ifdef __cplusplus
extern "C" {
#endif

typedef enum
{
    STRINGTODOUBLE_NO_ERROR = 0,
    STRINGTODOUBLE_MEMORY_ALLOCATION = 1,
    STRINGTODOUBLE_NOT_A_NUMBER = 2,
    STRINGTODOUBLE_ERROR = 3
}
stringToDoubleError;

/**
 * @TODO add comment
 *
 * @param pSTR
 * @param bConvertByNAN
 * @param ierr
 * @return <ReturnValue>
 */
STRING_IMPEXP double stringToDouble(const char *pSTR, BOOL bConvertByNAN, stringToDoubleError *ierr);
STRING_IMPEXP double stringToDoubleW(const wchar_t *pSTR, BOOL bConvertByNAN, stringToDoubleError *ierr);

#ifdef __cplusplus
}
#endif


#endif /* __STRINGTODOUBLE_H__ */
// =============================================================================