[COMMITTERS] pgsql: Add pg_strnlen() a portable implementation of strlen. - Mailing list pgsql-committers

From Andres Freund
Subject [COMMITTERS] pgsql: Add pg_strnlen() a portable implementation of strlen.
Date
Msg-id E1e1gR2-0005fB-SI@gemulon.postgresql.org
Whole thread Raw
Responses Re: [COMMITTERS] pgsql: Add pg_strnlen() a portable implementationof strlen.  (Andres Freund <andres@anarazel.de>)
List pgsql-committers
Add pg_strnlen() a portable implementation of strlen.

As the OS version is likely going to be more optimized, fall back to
it if available, as detected by configure.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/8a241792f968ed5be6cf4d41e32c0d264f6c0c65

Modified Files
--------------
configure                     |  2 +-
configure.in                  |  2 +-
src/common/string.c           | 20 ++++++++++++++++++++
src/include/common/string.h   | 15 +++++++++++++++
src/include/pg_config.h.in    |  3 +++
src/include/pg_config.h.win32 |  3 +++
src/port/snprintf.c           | 12 ++----------
7 files changed, 45 insertions(+), 12 deletions(-)


--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers

pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: [COMMITTERS] pgsql: Remove unused documentation file
Next
From: Andres Freund
Date:
Subject: Re: [COMMITTERS] pgsql: Add pg_strnlen() a portable implementationof strlen.