diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2018-05-07 21:51:42 +0200 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2018-05-07 21:51:42 +0200 |
| commit | 11bfb050e4712c6b320b8a1256a36a66c60359c0 (patch) | |
| tree | 27f92baaf42f1be28227c3b10ec8019dc125310d /src | |
| parent | ae1ed6641210c3d7bf570688d11b28c6460e4e9c (diff) | |
| download | PROJ-11bfb050e4712c6b320b8a1256a36a66c60359c0.tar.gz PROJ-11bfb050e4712c6b320b8a1256a36a66c60359c0.zip | |
Clean readability-redundant-declaratio clang-tidy warnings
Function prototypes were declared twice for the FFIO framework, probably
because FFIO at some point during development existed as a separate
file. With this commit the second set of function prototypes is removed
leaving only the first entry at the top of the file. Similarly duplicate
header inclusions has been removed.
Diffstat (limited to 'src')
| -rw-r--r-- | src/gie.c | 24 |
1 files changed, 0 insertions, 24 deletions
@@ -1160,30 +1160,6 @@ See the PROJ ".gie" test suites for examples of supported formatting. ****************************************************************************************/ -#include <stdio.h> -#include <stdlib.h> -#include <stdarg.h> - -#include <string.h> -#include <ctype.h> - -#include <math.h> -#include <errno.h> - - - -static int get_inp (ffio *G); -static int skip_to_next_tag (ffio *G); -static int step_into_gie_block (ffio *G); -static int locate_tag (ffio *G, const char *tag); -static int nextline (ffio *G); -static int at_end_delimiter (ffio *G); -static const char *at_tag (ffio *G); -static int at_decorative_element (ffio *G); -static ffio *ffio_destroy (ffio *G); -static ffio *ffio_create (const char **tags, size_t n_tags, size_t max_record_size); - - /***************************************************************************************/ static ffio *ffio_create (const char **tags, size_t n_tags, size_t max_record_size) { |
