Subversion Repositories Tewi

Rev

Rev 4 | Rev 7 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 nishi 1
/* $Id: tw_config.h 6 2024-09-13 10:28:20Z nishi $ */
2
 
3
#ifndef __TW_CONFIG_H__
4
#define __TW_CONFIG_H__
5
 
6 nishi 6
struct tw_config_entry {};
7
 
8
struct tw_config {
9
	struct tw_config_entry root;
10
};
11
 
12
void tw_config_init(void);
4 nishi 13
int tw_config_read(const char* path);
14
 
15
#endif