Mon, 20 Apr 2020 10:14:32 -0500
Convert README to markdown
113 | 1 | /* |
2 | * libtu/prefix.h | |
3 | * | |
4 | * Copyright (c) Tuomo Valkonen 1999-2007. | |
5 | * | |
6 | * You may distribute and modify this library under the terms of either | |
7 | * the Clarified Artistic License or the GNU LGPL, version 2.1 or later. | |
8 | */ | |
9 | ||
10 | #ifndef _LIBTU_PREFIX_H | |
11 | #define _LIBTU_PREFIX_H | |
12 | ||
13 | extern void prefix_set(const char *binloc, const char *dflt); | |
14 | extern char *prefix_add(const char *s); | |
15 | extern bool prefix_wrap_simple(bool (*fn)(const char *s), const char *s); | |
16 | ||
17 | #endif /* _LIBTU_PREFIX_H */ |