]> git.sur5r.net Git - cc65/blob - src/cc65/util.h
Moved verbose output to a shared module in the common/ directory.
[cc65] / src / cc65 / util.h
1 /*
2  * util.h
3  *
4  * Ullrich von Bassewitz, 18.06.1998
5  */
6
7
8
9 #ifndef UTIL_H
10 #define UTIL_H
11
12
13
14 /*****************************************************************************/
15 /*                                   code                                    */
16 /*****************************************************************************/
17
18
19
20 int powerof2 (unsigned long val);
21 /* Return the exponent if val is a power of two. Return -1 if val is not a
22  * power of two.
23  */
24
25
26
27 /* End of util.h */
28
29 #endif
30
31
32