Bläddra i källkod

Fix includes

Use alternate syntax for includes.
master
TheoryOfNekomata 4 månader sedan
förälder
incheckning
0d33ce7d14
3 ändrade filer med 4 tillägg och 4 borttagningar
  1. +1
    -1
      src/types/int.h
  2. +1
    -1
      src/types/string.h
  3. +2
    -2
      tests/test-int.c

+ 1
- 1
src/types/int.h Visa fil

@@ -1,7 +1,7 @@
#ifndef INI_CONFIG_TYPES_INT_H #ifndef INI_CONFIG_TYPES_INT_H
#define INI_CONFIG_TYPES_INT_H #define INI_CONFIG_TYPES_INT_H


#include <minIni.h>
#include "minIni.h"
#include "../ini-config.h" #include "../ini-config.h"


INI_CONFIG_DECLARE_TYPE(U8); INI_CONFIG_DECLARE_TYPE(U8);


+ 1
- 1
src/types/string.h Visa fil

@@ -1,7 +1,7 @@
#ifndef INI_CONFIG_TYPES_STRING_H #ifndef INI_CONFIG_TYPES_STRING_H
#define INI_CONFIG_TYPES_STRING_H #define INI_CONFIG_TYPES_STRING_H


#include <minIni.h>
#include "minIni.h"
#include "../ini-config.h" #include "../ini-config.h"


INI_CONFIG_DECLARE_TYPE(String); INI_CONFIG_DECLARE_TYPE(String);


+ 2
- 2
tests/test-int.c Visa fil

@@ -1,8 +1,8 @@
#include <assert.h> #include <assert.h>
#include <stdio.h> #include <stdio.h>
#include <stdint.h> #include <stdint.h>
#include "../source/ini-config.h"
#include "../source/types/int.h"
#include "../src/ini-config.h"
#include "../src/types/int.h"


static int8_t default_int8_value = 0; static int8_t default_int8_value = 0;




Laddar…
Avbryt
Spara