/usr/include/aqbanking5/aqbanking/country.h is in libaqbanking34-dev 5.4.3beta-2+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 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 | /***************************************************************************
$RCSfile$
-------------------
cvs : $Id$
begin : Mon Mar 01 2004
copyright : (C) 2004 by Martin Preuss
email : martin@libchipcard.de
***************************************************************************
* This file is part of the project "AqBanking". *
* Please see toplevel file COPYING of that project for license details. *
***************************************************************************/
#ifndef AQBANKING_COUNTRY_H
#define AQBANKING_COUNTRY_H
#include <gwenhywfar/list2.h>
#include <aqbanking/error.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct AB_COUNTRY AB_COUNTRY;
GWEN_CONSTLIST2_FUNCTION_LIB_DEFS(AB_COUNTRY, AB_Country, AQBANKING_API)
#include <aqbanking/banking.h>
/**
* Returns the untranslated name of the given country.
*/
AQBANKING_API
const char *AB_Country_GetName(const AB_COUNTRY *cntry);
/**
* Returns the ISO-3166-1 2-character code of the given country.
*/
AQBANKING_API
const char *AB_Country_GetCode(const AB_COUNTRY *cntry);
/**
* Returns the ISO-3166-1 numeric code of the given country.
*/
AQBANKING_API
int AB_Country_GetNumericCode(const AB_COUNTRY *cntry);
/**
* Returns a localized version of the name of the given country.
* If no localized version is available (i.e. because there is no translation)
* then the untranslated version is returned.
*/
AQBANKING_API
const char *AB_Country_GetLocalName(const AB_COUNTRY *cntry);
/**
* Returns the ISO 4217 name of the currency used in the given
* country.
*/
AQBANKING_API
const char *AB_Country_GetCurrencyName(const AB_COUNTRY *cntry);
/**
* Returns the 3-character ISO 4217 code of the currency used in the given
* country.
*/
AQBANKING_API
const char *AB_Country_GetCurrencyCode(const AB_COUNTRY *cntry);
/**
* Returns a localized version of the ISO 4217 name of the currency used in
* the given country.
*/
AQBANKING_API
const char *AB_Country_GetLocalCurrencyName(const AB_COUNTRY *cntry);
#ifdef __cplusplus
}
#endif
#endif /* AQBANKING_COUNTRY_H */
|