summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-09-23 21:06:41 +0200
committerStefan Metzmacher <metze@samba.org>2008-09-23 21:07:43 +0200
commit5477e1cbf90e3814713653e86af5e1d14518bc9c (patch)
treeed5210fcc00102946bf06d71a50d7ad5b0a75a20
parent1c2e6978b89551828b66c348be361ce9a2b8ddb4 (diff)
downloadsamba-5477e1cbf90e3814713653e86af5e1d14518bc9c.tar.gz
samba-5477e1cbf90e3814713653e86af5e1d14518bc9c.tar.bz2
samba-5477e1cbf90e3814713653e86af5e1d14518bc9c.zip
s4:lib/charset: add missing prototype of talloc_strdup_upper()
metze
-rw-r--r--source4/lib/charset/charset.h1
1 files changed, 1 insertions, 0 deletions
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);