This website works better with JavaScript.
Home
Explore
Help
Sign In
TheoryOfNekomata
/
ini-config
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix includes
Use alternate syntax for includes.
master
TheoryOfNekomata
9 months ago
parent
c50789bddb
commit
0d33ce7d14
3 changed files
with
4 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/types/int.h
+1
-1
src/types/string.h
+2
-2
tests/test-int.c
+ 1
- 1
src/types/int.h
View File
@@ -1,7 +1,7 @@
#ifndef INI_CONFIG_TYPES_INT_H
#define INI_CONFIG_TYPES_INT_H
#include
<minIni.h>
#include
"minIni.h"
#include "../ini-config.h"
INI_CONFIG_DECLARE_TYPE(U8);
+ 1
- 1
src/types/string.h
View File
@@ -1,7 +1,7 @@
#ifndef INI_CONFIG_TYPES_STRING_H
#define INI_CONFIG_TYPES_STRING_H
#include
<minIni.h>
#include
"minIni.h"
#include "../ini-config.h"
INI_CONFIG_DECLARE_TYPE(String);
+ 2
- 2
tests/test-int.c
View File
@@ -1,8 +1,8 @@
#include <assert.h>
#include <stdio.h>
#include <stdint.h>
#include "../s
ou
rc
e
/ini-config.h"
#include "../s
ou
rc
e
/types/int.h"
#include "../src/ini-config.h"
#include "../src/types/int.h"
static int8_t default_int8_value = 0;
Write
Preview
Loading…
Cancel
Save