diff options
| author | Thomas Knudsen <busstoptaktik@users.noreply.github.com> | 2017-12-17 18:04:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-17 18:04:13 +0100 |
| commit | 74ae4b09bbc80edb44a123a8272014d15b7d4b8d (patch) | |
| tree | 066537112cdc8624136049fade9d61d0ca9ad8b8 /src/proj_internal.h | |
| parent | 533207012bfd2c5de652b9df8b2104cad82b6988 (diff) | |
| download | PROJ-74ae4b09bbc80edb44a123a8272014d15b7d4b8d.tar.gz PROJ-74ae4b09bbc80edb44a123a8272014d15b7d4b8d.zip | |
Free format everywhere (#693)
* Free format now in cmd lines, in gie, and in init files
* Corrected handling of defaults
* Add demo of integrated definition and validation
* Repair stack-smashing memmove in get_init
* repair paralist corruption, clean up debug output
* Install test files for nmake builds
* Add many improvements following suggestions by @schwehr
* Be consistent in requiring lower case everywhere in gie.c
Also, this Fixes #703 and Fixes #697
Diffstat (limited to 'src/proj_internal.h')
| -rw-r--r-- | src/proj_internal.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/proj_internal.h b/src/proj_internal.h index 4e70e690..6571bce9 100644 --- a/src/proj_internal.h +++ b/src/proj_internal.h @@ -57,6 +57,7 @@ extern "C" { #define PJ_TORAD(deg) ((deg)*M_PI/180.0) #endif + /* This enum is also conditionally defined in projects.h - but we need it here */ /* for the pj_left/right prototypes, and enums cannot be forward declared */ enum pj_io_units { @@ -109,6 +110,12 @@ void pj_inherit_ellipsoid_def (const PJ *src, PJ *dst); void pj_erase_ellipsoid_def (PJ *P); int pj_calc_ellipsoid_params (PJ *P, double a, double es); +char *pj_chomp (char *c); +char *pj_shrink (char *c); +size_t pj_trim_argc (char *args); +char **pj_trim_argv (size_t argc, char *args); +char *pj_make_args (size_t argc, char **argv); + /* Lowest level: Minimum support for fileapi */ void proj_fileapi_set (PJ *P, void *fileapi); |
