File: libjodycode_check.h

package info (click to toggle)
jdupes 1.31.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,692 kB
  • sloc: ansic: 5,038; sh: 561; makefile: 251; xml: 9
file content (26 lines) | stat: -rw-r--r-- 623 bytes parent folder | download
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
/* libjodycode version check headear
 * See libjodycode_check.c for license information */

#ifndef LIBJODYCODE_CHECK_H
#define LIBJODYCODE_CHECK_H

#ifdef __cplusplus
extern "C" {
#endif

/* Set this to the minimum feature level required by your program */
#define MY_FEATURELEVEL_REQ 5

extern const int jc_build_api_major;
extern const int jc_build_api_minor;
extern const char *jc_build_version;
extern const char *jc_build_featurelevel;
extern const unsigned char jc_build_api_versiontable[];

extern int libjodycode_version_check(int verbose, int bail);

#ifdef __cplusplus
}
#endif

#endif /* LIBJODYCODE_CHECK_H */