Doxygen Source Code Documentation
Main Page Alphabetical List Data Structures File List Data Fields Globals Search
r_misc.h
Go to the documentation of this file.00001
00002 #ifndef _R_MISC_H_
00003 #define _R_MISC_H_
00004
00005
00006
00007 int r_sprintf_long_to_hex ( char * dest, unsigned long lsrc,
00008 int bytes, int pad );
00009 unsigned long r_hex_str_to_long ( char * src, int hex_digits );
00010
00011
00012
00013
00014 typedef struct { double xyz[3]; } THD_dvec3;
00015
00016 #ifndef ORCODE
00017 #define ORCODE(aa) \
00018 ( (aa)=='R' ? ORI_R2L_TYPE : (aa)=='L' ? ORI_L2R_TYPE : \
00019 (aa)=='P' ? ORI_P2A_TYPE : (aa)=='A' ? ORI_A2P_TYPE : \
00020 (aa)=='I' ? ORI_I2S_TYPE : (aa)=='S' ? ORI_S2I_TYPE : ILLEGAL_TYPE )
00021 #endif
00022
00023 #ifndef OR3OK
00024 #define OR3OK(x,y,z) ( ((x)&6) + ((y)&6) + ((z)&6) == 6 )
00025 #endif
00026
00027 #endif