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/cct.c | |
| 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/cct.c')
| -rw-r--r-- | src/cct.c | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -71,20 +71,23 @@ Thomas Knudsen, thokn@sdfe.dk, 2016-05-25/2017-10-26 ***********************************************************************/ -#include "optargpm.h" -#include "proj_internal.h" -#include <proj.h> -#include "projects.h" +#include <ctype.h> +#include <math.h> #include <stdio.h> #include <stdlib.h> -#include <ctype.h> #include <string.h> -#include <math.h> + +#include <proj.h> +#include "proj_internal.h" +#include "projects.h" +#include "optargpm.h" +/* Prototypes for functions in proj_strtod.c */ double proj_strtod(const char *str, char **endptr); double proj_atof(const char *str); +/* Prototypes from functions in this file */ char *column (char *buf, int n); PJ_COORD parse_input_line (char *buf, int *columns, double fixed_height, double fixed_time); |
