summaryrefslogtreecommitdiffstats
path: root/pcilib/env.h
blob: 7cf69b95269763a19b9834f17b8a68d8031c6a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _PCILIB_ENV_H
#define _PCILIB_ENV_H

typedef enum {
    PCILIB_DEBUG_DMA_ENV,
    PCILIB_DEBUG_MISSING_EVENTS_ENV,
    PCILIB_MAX_ENV
} pcilib_env_t;

#ifdef __cplusplus
extern "C" {
#endif

const char *pcilib_getenv(pcilib_env_t env, const char *var);

#ifdef __cplusplus
}
#endif

#endif /* _PCILIB_ENV_H */