Use the host compiler for build tool c-ify.
[darkstat-debian] / ncache.h
1 /* darkstat 3
2 * copyright (c) 2001-2006 Emil Mikulic.
3 *
4 * ncache.h: cache of protocol and service names.
5 *
6 * You may use, modify and redistribute this file under the terms of the
7 * GNU General Public License version 2. (see COPYING.GPL)
8 */
9
10 void ncache_init(void);
11 void ncache_free(void);
12 const char *getproto(const int proto);
13 const char *getservtcp(const int port);
14 const char *getservudp(const int port);
15
16 /* vim:set ts=3 sw=3 tw=78 expandtab: */