diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-03-09 15:43:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-03-09 15:43:08 +0000 |
commit | b79df1dc29c5ca3181be3e6e642f6c51e951e34e (patch) | |
tree | 8740f7765aeccd4559cc62f34f76094dc8853da1 | |
parent | 180ebf02081087eec625a25c785985f5d6b5eff4 (diff) | |
download | rtmux-b79df1dc29c5ca3181be3e6e642f6c51e951e34e.tar.gz rtmux-b79df1dc29c5ca3181be3e6e642f6c51e951e34e.tar.bz2 rtmux-b79df1dc29c5ca3181be3e6e642f6c51e951e34e.zip |
Compat code for strndup and strnlen.
-rw-r--r-- | Makefile.am | 6 | ||||
-rw-r--r-- | compat.h | 10 | ||||
-rw-r--r-- | compat/strndup.c | 41 | ||||
-rw-r--r-- | compat/strnlen.c | 34 | ||||
-rw-r--r-- | configure.ac | 14 |
5 files changed, 105 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 8bfafd40..413bd590 100644 --- a/Makefile.am +++ b/Makefile.am @@ -228,6 +228,12 @@ endif if NO_STRLCPY nodist_tmux_SOURCES += compat/strlcpy.c endif +if NO_STRNLEN +nodist_tmux_SOURCES += compat/strnlen.c +endif +if NO_STRNDUP +nodist_tmux_SOURCES += compat/strndup.c +endif if NO_ASPRINTF nodist_tmux_SOURCES += compat/asprintf.c endif @@ -247,6 +247,16 @@ size_t strlcpy(char *, const char *, size_t); size_t strlcat(char *, const char *, size_t); #endif +#ifndef HAVE_STRNLEN +/* strnlen.c */ +size_t strnlen(const char *, size_t); +#endif + +#ifndef HAVE_STRNDUP +/* strndup.c */ +char *strndup(const char *, size_t); +#endif + #ifndef HAVE_DAEMON /* daemon.c */ int daemon(int, int); diff --git a/compat/strndup.c b/compat/strndup.c new file mode 100644 index 00000000..32bec6ab --- /dev/null +++ b/compat/strndup.c @@ -0,0 +1,41 @@ +/* $OpenBSD: strndup.c,v 1.2 2015/08/31 02:53:57 guenther Exp $ */ + +/* + * Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <sys/types.h> + +#include <stddef.h> +#include <stdlib.h> +#include <string.h> + +#include "compat.h" + +char * +strndup(const char *str, size_t maxlen) +{ + char *copy; + size_t len; + + len = strnlen(str, maxlen); + copy = malloc(len + 1); + if (copy != NULL) { + (void)memcpy(copy, str, len); + copy[len] = '\0'; + } + + return copy; +} diff --git a/compat/strnlen.c b/compat/strnlen.c new file mode 100644 index 00000000..eeeb833d --- /dev/null +++ b/compat/strnlen.c @@ -0,0 +1,34 @@ +/* $OpenBSD: strnlen.c,v 1.8 2016/10/16 17:37:39 dtucker Exp $ */ + +/* + * Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <sys/types.h> + +#include <string.h> + +#include "compat.h" + +size_t +strnlen(const char *str, size_t maxlen) +{ + const char *cp; + + for (cp = str; maxlen != 0 && *cp != '\0'; cp++, maxlen--) + ; + + return (size_t)(cp - str); +} diff --git a/configure.ac b/configure.ac index 79dfcb31..67ff2d23 100644 --- a/configure.ac +++ b/configure.ac @@ -423,6 +423,20 @@ if test "x$found_strlcat" = xyes; then fi AM_CONDITIONAL(NO_STRLCAT, [test "x$found_strlcat" = xno]) +# Look for strnlen, compat/strnlen.c used if missing. +AC_CHECK_FUNC(strnlen, found_strnlen=yes, found_strnlen=no) +if test "x$found_strnlen" = xyes; then + AC_DEFINE(HAVE_STRNLEN) +fi +AM_CONDITIONAL(NO_STRNLEN, [test "x$found_strnlen" = xno]) + +# Look for strndup, compat/strndup.c used if missing. +AC_CHECK_FUNC(strndup, found_strndup=yes, found_strndup=no) +if test "x$found_strndup" = xyes; then + AC_DEFINE(HAVE_STRNDUP) +fi +AM_CONDITIONAL(NO_STRNDUP, [test "x$found_strndup" = xno]) + # Look for asprintf, compat/asprintf.c used if missing. AC_CHECK_FUNC(asprintf, found_asprintf=yes, found_asprintf=no) if test "x$found_asprintf" = xyes; then |