This file is indexed.

/usr/include/libchipcard5/chipcard/card_l.h is in libchipcard-dev 5.1.0beta-2.

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
/***************************************************************************
    begin       : Mon Mar 01 2004
    copyright   : (C) 2004-2010 by Martin Preuss
    email       : martin@libchipcard.de

 ***************************************************************************
 *          Please see toplevel file COPYING for license details           *
 ***************************************************************************/


#ifndef CHIPCARD_CLIENT_CARD_L_H
#define CHIPCARD_CLIENT_CARD_L_H


#include "card_imp.h"

#include <winscard.h>

#ifndef OS_WIN32
# include <wintypes.h>
#endif



LC_CARD *LC_Card_new(LC_CLIENT *cl,
		     SCARDHANDLE scardHandle,
		     const char *readerName,
		     DWORD protocol,
		     const char *cardType,
		     uint32_t rflags,
		     const unsigned char *atrBuf,
		     unsigned int atrLen);


GWEN_XMLNODE *LC_Card_FindCommand(LC_CARD *card,
                                  const char *commandName);

int LC_Card_IsConnected(const LC_CARD *card);

void LC_Card_SetConnected(LC_CARD *card, int b);


SCARDHANDLE LC_Card_GetSCardHandle(const LC_CARD *card);

uint32_t LC_Card_GetFeatureCode(const LC_CARD *cd, int idx);

const char *LC_Card_GetReaderName(const LC_CARD *card);

DWORD LC_Card_GetProtocol(const LC_CARD *card);

#endif /* CHIPCARD_CLIENT_CARD_L_H */