~m-grant-prg/libmgesysutils/bionic

« back to all changes in this revision

Viewing changes to src/prg/c/src/libmgesysutils/configfile/configfile.c

  • Committer: Mark Grant
  • Date: 2019-05-17 10:18:00 UTC
  • mfrom: (2.1.24)
  • Revision ID: m.grant.prg@gmail.com-20190517101800-2whw5r7u8027c2ay
Merge new upstream development release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * @file lib/src/prg/c/src/libmgesysutils/configfile/configfile.c
 
2
 * @file src/prg/c/src/libmgesysutils/configfile/configfile.c
3
3
 *
4
4
 * Configuration file processing.
5
5
 *
37
37
 * for an optional Section is only enforced if the Section does appear, (is
38
38
 * defined), in the config file.
39
39
 *
40
 
 * @author Copyright (C) 2015-2018  Mark Grant
 
40
 * @author Copyright (C) 2015-2019  Mark Grant
41
41
 *
42
42
 * Released under the GPLv3 only.\n
43
43
 * SPDX-License-Identifier: GPL-3.0
44
44
 *
45
 
 * @version _v1.0.9 ==== 13/05/2018_
 
45
 * @version _v1.0.10 ==== 16/05/2019_
46
46
 */
47
47
 
48
48
/* **********************************************************************
67
67
 * 13/05/2018   MG      1.0.9   Extract prototype declarations to       *
68
68
 *                              internal.h                              *
69
69
 *                              Return -ve error number on failure.     *
 
70
 * 16/05/2019   MG      1.0.10  Collapse AT sub-projects into one.      *
70
71
 *                                                                      *
71
72
 ************************************************************************
72
73
 */
457
458
        }
458
459
        return -mge_errno;
459
460
}
 
461