stk-code_catmod/lib/mcpp/mcpp_out.h

14 lines
364 B
C
Raw Permalink Normal View History

2020-01-02 23:46:35 -05:00
/* mcpp_out.h: declarations of OUTDEST data types for MCPP */
#ifndef _MCPP_OUT_H
#define _MCPP_OUT_H
/* Choices for output destination */
typedef enum {
OUT, /* ~= fp_out */
ERR, /* ~= fp_err */
DBG, /* ~= fp_debug */
NUM_OUTDEST
} OUTDEST;
#endif /* _MCPP_OUT_H */