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

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

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

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