mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 12:31:10 +00:00
12 lines
218 B
C
12 lines
218 B
C
|
#ifndef __util_h
|
||
|
#define __util_h
|
||
|
|
||
|
void printf(string fmt, ...);
|
||
|
void traceon(void);
|
||
|
void traceoff(void);
|
||
|
int *binomial (int n);
|
||
|
int count_bits (unsigned v);
|
||
|
int count_flips (unsigned a, unsigned b);
|
||
|
|
||
|
#endif//__util_h
|