Document user-visible changes
[tftp-hpa.git] / tftpd / tftpd.h
blob789ee9465994791d628b295613048c3d3e2f9e55
1 /* $Id$ */
2 /* ----------------------------------------------------------------------- *
3 *
4 * Copyright 2001 H. Peter Anvin - All Rights Reserved
6 * This program is free software available under the same license
7 * as the "OpenBSD" operating system, distributed at
8 * http://www.openbsd.org/.
10 * ----------------------------------------------------------------------- */
13 * tftpd.h
15 * Prototypes for various functions that are part of the tftpd server.
18 #ifndef TFTPD_TFTPD_H
19 #define TFTPD_TFTPD_H
21 void set_signal(int, void (*)(int), int);
22 void *tfmalloc(size_t);
23 char *tfstrdup(const char *);
25 extern int verbosity;
27 #endif