19 lines
419 B
C
19 lines
419 B
C
#ifndef ESTRUCT_H_
|
|
#define ESTRUCT_H_
|
|
|
|
/* Configuration options */
|
|
|
|
#define QLICENSE 0 /* Force use the default license option */
|
|
#define LICENSE "BSD-3-Clause" /* Default SPDX-License-Identifier */
|
|
|
|
#define QAUTHOR 0 /* Force use the default author option */
|
|
#define AUTHOR "fSD" /* Default author */
|
|
|
|
#define DEFAULT_GIT 0 /* Default git state */
|
|
|
|
/* Internal constants */
|
|
|
|
#define NPAT 128
|
|
|
|
#endif /* ESTRUCT_H_ */
|