GDAL
gdal_csv.h
1/******************************************************************************
2 *
3 * Project: Common Portability Library
4 * Purpose: Functions for reading and scanning CSV (comma separated,
5 * variable length text files holding tables) files.
6 * Author: Frank Warmerdam, warmerdam@pobox.com
7 *
8 ******************************************************************************
9 * Copyright (c) 1999, Frank Warmerdam
10 * Copyright (c) 2010, Even Rouault <even dot rouault at spatialys.com>
11 *
12 * SPDX-License-Identifier: MIT
13 ****************************************************************************/
14
15#ifndef GDAL_CSV_H_INCLUDED
16#define GDAL_CSV_H_INCLUDED
17
18#include "cpl_port.h"
19
21const char *GDALDefaultCSVFilename(const char *pszBasename);
23
24#endif
Core portability definitions for CPL.
#define CPL_C_END
Macro to end a block of C symbols.
Definition cpl_port.h:289
#define CPL_C_START
Macro to start a block of C symbols.
Definition cpl_port.h:285