Skip to content

Commit 0875c01

Browse files
author
John Jenkins
committed
promote configfile to public API
1 parent f0c2ef4 commit 0875c01

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed
File renamed without changes.

src/Makefile.subdir

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ nobase_include_HEADERS = \
9191
codes/net/loggp.h \
9292
codes/net/simplenet-upd.h \
9393
codes/net/simplep2p.h \
94-
codes/net/torus.h
94+
codes/net/torus.h \
95+
codes/configfile.h
9596

9697

9798
#codes/codes-nw-workload.h
@@ -114,7 +115,6 @@ src_libcodes_a_SOURCES = \
114115
src/modelconfig/configfile.c \
115116
src/modelconfig/configglue.h \
116117
src/modelconfig/configglue.c \
117-
src/modelconfig/configfile.h \
118118
src/modelconfig/configstore.h \
119119
src/modelconfig/configstore.c \
120120
src/modelconfig/configstoreadapter.h \

src/modelconfig/configfile.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include <stdlib.h>
1616
#endif
1717

18-
#include "configfile.h"
18+
#include <codes/configfile.h>
1919
#include "txt_configfile.h"
2020

2121
static int cf_equal_helper (struct ConfigVTable * h1, SectionHandle s1, struct ConfigVTable * h2,

src/modelconfig/configglue.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
/* Common header for parser and lexer */
1111

12-
#include "configfile.h"
12+
#include <codes/configfile.h>
1313

1414

1515
typedef struct

src/modelconfig/configstoreadapter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#ifndef SRC_COMMON_MODELCONFIG_CONFIGSTOREADAPTER_H
88
#define SRC_COMMON_MODELCONFIG_CONFIGSTOREADAPTER_H
99

10-
#include "configfile.h"
10+
#include <codes/configfile.h>
1111
#include "configstore.h"
1212

1313
#ifdef __cplusplus

src/modelconfig/configuration.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include "codes/configuration.h"
1414
#include <ross.h>
1515

16-
#include "configfile.h"
16+
#include <codes/configfile.h>
1717
#include "txt_configfile.h"
1818

1919
/*

src/modelconfig/txt_configfile.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
#include <stdio.h>
12-
#include "configfile.h"
12+
#include <codes/configfile.h>
1313

1414
#ifdef __cplusplus
1515
extern "C" {

0 commit comments

Comments
 (0)