Subversion Repositories Tewi

Rev

Rev 19 | Rev 21 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 19 Rev 20
Line 1... Line 1...
1
/* $Id: config.c 19 2024-09-14 00:51:41Z nishi $ */
1
/* $Id: config.c 20 2024-09-14 09:59:15Z nishi $ */
2
 
2
 
3
#define SOURCE
3
#define SOURCE
4
 
4
 
5
#include "tw_config.h"
5
#include "tw_config.h"
6
#include "tw_module.h"
6
#include "tw_module.h"
Line 9... Line 9...
9
#include <stdint.h>
9
#include <stdint.h>
10
#include <stdlib.h>
10
#include <stdlib.h>
11
#include <string.h>
11
#include <string.h>
12
#include <unistd.h>
12
#include <unistd.h>
13
 
13
 
-
 
14
#ifdef __MINGW32__
-
 
15
#include <winsock2.h>
-
 
16
#endif
-
 
17
 
14
#include <cm_string.h>
18
#include <cm_string.h>
15
#include <cm_log.h>
19
#include <cm_log.h>
16
 
20
 
17
struct tw_config config;
21
struct tw_config config;
18
 
22