You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
558 B
31 lines
558 B
4 years ago
|
#ifndef _SHUFFLE3_H
|
||
|
#define _SHUFFLE3_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
#define _UNIQUE __restrict
|
||
|
extern "C" {
|
||
|
#else
|
||
|
#define _UNIQUE restrict
|
||
|
#endif
|
||
|
|
||
|
#ifdef DEBUG
|
||
|
#define _FORCE_INLINE __attribute__((gnu_inline)) static inline
|
||
|
#else
|
||
|
#define _FORCE_INLINE __attribute__((gnu_inline)) extern inline
|
||
|
#endif
|
||
|
|
||
4 years ago
|
/*
|
||
4 years ago
|
#ifdef DEBUG
|
||
|
#define dprintf(fmt, ...) printf("[dbg @" __FILE__ "->%s:%d] " fmt "\n", __func__, __LINE__ __VA_OPT__(,) __VA_ARGS__)
|
||
|
#else
|
||
|
#define dprintf(fmt, ...)
|
||
|
#endif
|
||
4 years ago
|
*/
|
||
4 years ago
|
extern const char* _prog_name;
|
||
|
|
||
4 years ago
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* _SHUFFLE3_H */
|