Mon, 20 Apr 2020 10:14:32 -0500
Convert README to markdown
58 | 1 | /* |
2 | * libtu/util.h | |
3 | * | |
4 | * Copyright (c) Tuomo Valkonen 1999-2002. | |
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_UTIL_H | |
11 | #define LIBTU_UTIL_H | |
12 | ||
13 | #include <stdarg.h> | |
14 | #include <stdio.h> | |
15 | #include <stdlib.h> | |
16 | ||
17 | #include "types.h" | |
18 | #include "optparser.h" | |
19 | ||
20 | extern void libtu_init(const char *argv0); | |
109
96a557abc364
Renamed `prog_execname` `libtu_progname` and added `libtu_progbasename`.
Tuomo Valkonen <tuomov@iki.fi>
parents:
79
diff
changeset
|
21 | extern const char *libtu_progname(); |
96a557abc364
Renamed `prog_execname` `libtu_progname` and added `libtu_progbasename`.
Tuomo Valkonen <tuomov@iki.fi>
parents:
79
diff
changeset
|
22 | extern const char *libtu_progbasename(); |
58 | 23 | |
24 | #endif /* LIBTU_UTIL_H */ |