This file is indexed.

/usr/include/tilp2/cmd73.h is in libticalcs-dev 1.1.8+dfsg2-3.

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
/* Hey EMACS -*- linux-c -*- */
/* $Id$ */

/*  libticalcs - Ti Calculator library, a part of the TiLP project
 *  Copyright (C) 1999-2005  Romain LiƩvin
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software Foundation,
 *  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#ifndef __TICALCS_CMD73__
#define __TICALCS_CMD73__

TIEXPORT3 int TICALL ti73_send_VAR(CalcHandle*, uint16_t varsize, uint8_t vartype, const char *varname, uint8_t varattr);
TIEXPORT3 int TICALL ti73_send_VAR2(CalcHandle*, uint32_t length, uint8_t type, uint8_t flag, uint16_t offset, uint16_t page);
TIEXPORT3 int TICALL ti73_send_CTS(CalcHandle*);
TIEXPORT3 int TICALL ti73_send_XDP(CalcHandle*, int length, uint8_t * data);
TIEXPORT3 int TICALL ti73_send_FLSH(CalcHandle*);
TIEXPORT3 int TICALL ti73_send_SKP(CalcHandle*, uint8_t rej_code);
TIEXPORT3 int TICALL ti73_send_ACK(CalcHandle*);
TIEXPORT3 int TICALL ti73_send_ERR(CalcHandle*);
TIEXPORT3 int TICALL ti73_send_RDY(CalcHandle*);
TIEXPORT3 int TICALL ti73_send_SCR(CalcHandle*);
TIEXPORT3 int TICALL ti73_send_KEY(CalcHandle*, uint16_t scancode);
TIEXPORT3 int TICALL ti73_send_EOT(CalcHandle*);
TIEXPORT3 int TICALL ti73_send_REQ(CalcHandle*, uint16_t varsize, uint8_t vartype, const char *varname, uint8_t varattr);
TIEXPORT3 int TICALL ti73_send_REQ2(CalcHandle*, uint16_t appsize, uint8_t apptype, const char *appname, uint8_t appattr);
TIEXPORT3 int TICALL ti73_send_RTS(CalcHandle*, uint16_t varsize, uint8_t vartype, const char *varname, uint8_t varattr);
TIEXPORT3 int TICALL ti73_send_VER(CalcHandle*);
TIEXPORT3 int TICALL ti73_send_DEL(CalcHandle*, uint16_t varsize, uint8_t vartype, const char *varname, uint8_t varattr);
TIEXPORT3 int TICALL ti73_send_DUMP(CalcHandle*, uint16_t page);

TIEXPORT3 int TICALL ti73_recv_VAR(CalcHandle*, uint16_t * varsize, uint8_t * vartype, char *varname, uint8_t * varattr);
TIEXPORT3 int TICALL ti73_recv_VAR2(CalcHandle*, uint16_t * length, uint8_t * type, char *name, uint16_t * offset, uint16_t * page);
TIEXPORT3 int TICALL ti73_recv_CTS(CalcHandle*, uint16_t length);
TIEXPORT3 int TICALL ti73_recv_SKP(CalcHandle*, uint8_t * rej_code);
TIEXPORT3 int TICALL ti73_recv_XDP(CalcHandle*, uint16_t * length, uint8_t * data);
TIEXPORT3 int TICALL ti73_recv_ACK(CalcHandle*, uint16_t * status);
TIEXPORT3 int TICALL ti73_recv_RTS(CalcHandle*, uint16_t * varsize, uint8_t * vartype, char *varname, uint8_t * varattr);

#endif