1
0
mirror of https://github.com/php/php-src.git synced 2026-04-11 18:13:00 +02:00
Files
archived-php-src/ext/xmlrpc/libxmlrpc
Peter Kokot d3ca28f569 Remove HAVE_STRING_H
The C89 standard and later defines the `<string.h>` header as part of
the standard headers [1] and on current systems it is always present.

Code included also `<strings.h>` header as an alterinative in some
files. This kind of check was relevant on some older systems where the
`<strings.h>` file included definitions for the C89 compliant
`<string.h>`. Today such alternative check is not required anymore. The
`<strings.h>` file is part of the POSIX definition these days.

Also Autoconf suggests doing this and relying on C89 or above [2] and [3].

This patch also cleans few unused `<strings.h>` inclusions in the libmbfl.

[1]: https://port70.net/~nsz/c/c89/c89-draft.html#4.1.2
[2]: http://git.savannah.gnu.org/cgit/autoconf.git/tree/lib/autoconf/headers.m4
[3]: https://www.gnu.org/software/autoconf/manual/autoconf-2.69/autoconf.html
2018-09-18 05:32:08 +02:00
..
2018-09-18 05:32:08 +02:00
2018-03-27 22:04:26 +02:00
2018-06-13 16:10:08 +02:00
2015-01-10 15:07:38 -08:00
2016-10-20 11:42:23 +02:00
2015-01-10 15:07:38 -08:00
2016-11-05 13:59:56 -07:00
2015-01-10 15:07:38 -08:00
2016-10-20 11:42:23 +02:00
2015-01-10 15:07:38 -08:00
2016-10-20 11:42:23 +02:00
2015-01-10 15:07:38 -08:00
2016-10-20 11:42:23 +02:00
2015-01-10 15:07:38 -08:00
2016-10-20 11:42:23 +02:00
2015-01-10 15:07:38 -08:00
2016-10-20 11:42:23 +02:00

organization of this directory is moving towards this approach:

<module>.h               -- public API and data types
<module>_private.h       -- protected API and data types
<module>.c               -- implementation and private API / types

The rules are:
.c files may include *_private.h.
.h files may not include *_private.h

This allows us to have a nicely encapsulated C api with opaque data types and private functions
that are nonetheless shared between source files without redundant extern declarations..