Move easycsv.h to include/ directory

This commit is contained in:
Pradana AUMARS 2021-07-11 12:03:27 +02:00
parent 47095a868e
commit 83662a410e
4 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,3 @@
lib_LTLIBRARIES = libeasycsv.la
libeasycsv_la_SOURCES = easycsv.c
include_HEADERS = easycsv.h
include_HEADERS = ../include/easycsv.h

View File

@ -1,4 +1,4 @@
#include "easycsv.h"
#include "../include/easycsv.h"
/* Generic type definitions for internal use */

View File

@ -1,5 +1,5 @@
#include <check.h>
#include "../src/easycsv.h"
#include "../include/easycsv.h"
static const char SAMPLE1_PATH[] = "samples/1.csv";
static const char SAMPLE2_PATH[] = "samples/2.csv";