summaryrefslogtreecommitdiff
path: root/src/init2.h
blob: d99cd62c408fcb8eb25903807bdb7d04f6485210 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

// C linkage required for these functions since main-* code uses them.
#ifdef __cplusplus
extern "C" {
#endif

void init_file_paths(char *path);
void init_angband(void);

#ifdef __cplusplus
} // extern "C"
#endif