summaryrefslogtreecommitdiff
path: root/src/buffer.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2021-03-25 13:29:18 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2021-04-02 01:16:42 -0400
commit680e6b3bca6e6b4c721af5844bd2f807c0060b83 (patch)
treea4e333d6070d9f72aeb35ddd64a69e0e2d5ca0d9 /src/buffer.h
parent262561fae1aad08550870efa4234c6c5659bd680 (diff)
downloadlighttpd-git-680e6b3bca6e6b4c721af5844bd2f807c0060b83.tar.gz
[multiple] buffer_copy_path_len2() aggregate
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 83584769..b80fe919 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -279,6 +279,7 @@ __attribute_nonnull__
static inline void buffer_append_slash(buffer *b); /* append '/' no non-empty strings not ending in '/' */
void buffer_append_path_len(buffer * restrict b, const char * restrict a, size_t alen); /* join strings with '/', if '/' not present */
+void buffer_copy_path_len2(buffer * restrict b, const char * restrict s1, size_t len1, const char * restrict s2, size_t len2);
__attribute_nonnull__
__attribute_pure__