This file is indexed.

/usr/include/aqebics/client/account.h is in libaqbanking-dev 5.6.12-1+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
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
/***************************************************************************
    begin       : Wed May 07 2008
    copyright   : (C) 2008 by Martin Preuss
    email       : martin@libchipcard.de

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

#ifndef EBC_CLIENT_ACCOUNT_H
#define EBC_CLIENT_ACCOUNT_H

#include <aqebics/aqebics.h>

#include <aqbanking/account.h>

#include <gwenhywfar/db.h>
#include <gwenhywfar/misc.h>



#ifdef __cplusplus
extern "C" {
#endif

#define EBC_ACCOUNT_FLAGS_STA_SPP                  0x00000001
#define EBC_ACCOUNT_FLAGS_IZV_SPP                  0x00000002


AQEBICS_API void EBC_Account_Flags_toDb(GWEN_DB_NODE *db, const char *name,
                                        uint32_t flags);
AQEBICS_API uint32_t EBC_Account_Flags_fromDb(GWEN_DB_NODE *db, const char *name);


AQEBICS_API const char *EBC_Account_GetEbicsId(const AB_ACCOUNT *a);
AQEBICS_API void EBC_Account_SetEbicsId(AB_ACCOUNT *a, const char *s);


/**
 * Returns 0 if the bank doesn't sign messages, 1 otherwise.
 * This can be used in case the bank sends a sign key upon request but
 * never signs it's messages.
 */

AQEBICS_API uint32_t EBC_Account_GetFlags(const AB_ACCOUNT *a);
AQEBICS_API void EBC_Account_SetFlags(AB_ACCOUNT *a, uint32_t flags);
AQEBICS_API void EBC_Account_AddFlags(AB_ACCOUNT *a, uint32_t flags);
AQEBICS_API void EBC_Account_SubFlags(AB_ACCOUNT *a, uint32_t flags);


#ifdef __cplusplus
}
#endif

#endif /* EBC_USER_H */