mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
8 lines
106 B
C
8 lines
106 B
C
|
|
#ifndef __CLZ_H__
|
|
#define __CLZ_H__
|
|
|
|
unsigned int __clz(unsigned int bitvector);
|
|
|
|
#endif /* __CLZ_H__ */
|