source: git/factory/cf_util.h @ a8af6a8

spielwiese
Last change on this file since a8af6a8 was a8af6a8, checked in by Martin Lee <martinlee84@…>, 12 years ago
chg: new command igcd to compute integer gcd
  • Property mode set to 100644
File size: 416 bytes
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2/* $Id$ */
3
4#ifndef INCL_CF_UTIL_H
5#define INCL_CF_UTIL_H
6
7//{{{ docu
8//
9// cf_util.h - header to cf_util.cc.
10//
11//}}}
12
13// #include "config.h"
14
15int ipower ( int b, int n );
16int ilog2 (int a);
17int igcd (int a, int b);
18
19/*BEGINPUBLIC*/
20void factoryError_intern(const char *s);
21extern void (*factoryError)(const char *s);
22/*ENDPUBLIC*/
23
24
25#endif /* ! INCL_CF_UTIL_H */
Note: See TracBrowser for help on using the repository browser.