File: cpl_serv.h

package info (click to toggle)
gdal 3.11.3%2Bdfsg-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 89,016 kB
  • sloc: cpp: 1,165,048; ansic: 208,864; python: 26,958; java: 5,972; xml: 4,611; sh: 3,776; cs: 2,508; yacc: 1,306; makefile: 213
file content (33 lines) | stat: -rw-r--r-- 936 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/******************************************************************************
 * Copyright (c) 1998, Frank Warmerdam
 *
 * SPDX-License-Identifier: MIT
 ******************************************************************************
 *
 * cpl_serv.h
 *
 * This include file derived and simplified from the GDAL Common Portability
 * Library.
 */

#ifndef CPL_SERV_H_INCLUDED
#define CPL_SERV_H_INCLUDED

/* ==================================================================== */
/*	Standard include files.						*/
/* ==================================================================== */

#include "geo_config.h"

#include "cpl_port.h"
#include "cpl_string.h"

#define GTIFAtof CPLAtof
#define GTIFStrtod CPLStrtod
/*
 * Define an auxiliary symbol to help us to find when the internal cpl_serv.h
 * is used instead of the external one from the geotiff package.
 */
#define CPL_SERV_H_INTERNAL 1

#endif /* ndef CPL_SERV_H_INCLUDED */