blob: 2b6b83f9d986407e7a7ce4f215a391191979e9b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Written by K.Asayayam Sep. 1995 */
#ifndef KSUPPORT_H_INCLUDED
#define KSUPPORT_H_INCLUDED
typedef struct {
const char *var_name;
const char *path;
const char *suffix;
} KpathseaSupportInfo;
extern KpathseaSupportInfo kp_ist, kp_dict;
extern void KP_entry_filetype(KpathseaSupportInfo *);
extern const char *KP_find_file(KpathseaSupportInfo *, const char *);
#endif /* ! KSUPPORT_H_INCLUDED */
|