35 lines
640 B
C
35 lines
640 B
C
#ifndef T32PP_H__
|
|
#define T32PP_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void t32__alpha(void);
|
|
void t32__beta(void);
|
|
|
|
void t32__gamma0(void);
|
|
void t32__gamma1(void);
|
|
void t32__gamma2(void);
|
|
void t32__gamma3(void);
|
|
void t32__gamma4(void);
|
|
void t32__gamma5(void);
|
|
|
|
void t32__delta0(void);
|
|
void t32__delta1(void);
|
|
void t32__delta2(void);
|
|
void t32__delta3(void);
|
|
void t32__delta4(void);
|
|
void t32__delta5(void);
|
|
|
|
#define t32_pp(v__, x__) ((x__), (v__))
|
|
#define t32_pcc(c__) ((c__) ? t32__alpha() : t32__beta())
|
|
#define t32_pccn(c__, x__) ((c__) ? t32__alpha() : (t32__beta(), (x__)))
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* T32PP_H__ */
|