~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_bit.h

  • Committer: Monty Taylor
  • Date: 2008-09-23 06:09:48 UTC
  • mto: This revision was merged to the branch mainline in revision 419.
  • Revision ID: monty@inaugust.com-20080923060948-pec1d5wxetf84tte
Cleaned up stuff out of global.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
  Some useful bit functions
3
3
*/
4
4
 
5
 
C_MODE_START
 
5
#ifdef __cplusplus
 
6
extern "C" {
 
7
#endif
6
8
 
7
9
extern const char _my_bits_nbits[256];
8
10
extern const uchar _my_bits_reverse_table[256];
97
99
     _my_bits_reverse_table[(key>>24)      ];
98
100
}
99
101
 
100
 
C_MODE_END
 
102
#ifdef __cplusplus
 
103
}
 
104
#endif
 
105