From 5477e1cbf90e3814713653e86af5e1d14518bc9c Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 23 Sep 2008 21:06:41 +0200 Subject: s4:lib/charset: add missing prototype of talloc_strdup_upper() metze --- source4/lib/charset/charset.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source4') diff --git a/source4/lib/charset/charset.h b/source4/lib/charset/charset.h index c49745cd7f..d4dae4cdad 100644 --- a/source4/lib/charset/charset.h +++ b/source4/lib/charset/charset.h @@ -97,6 +97,7 @@ size_t count_chars_w(const char *s, char c); void strupper_m(char *s); void strlower_m(char *s); char *strupper_talloc(TALLOC_CTX *ctx, const char *src); +char *talloc_strdup_upper(TALLOC_CTX *ctx, const char *src); char *strupper_talloc_n(TALLOC_CTX *ctx, const char *src, size_t n); char *strlower_talloc(TALLOC_CTX *ctx, const char *src); bool strhasupper(const char *string); -- cgit