diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-09-23 21:06:41 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-09-23 21:07:43 +0200 |
commit | 5477e1cbf90e3814713653e86af5e1d14518bc9c (patch) | |
tree | ed5210fcc00102946bf06d71a50d7ad5b0a75a20 /source4/lib | |
parent | 1c2e6978b89551828b66c348be361ce9a2b8ddb4 (diff) | |
download | samba-5477e1cbf90e3814713653e86af5e1d14518bc9c.tar.gz samba-5477e1cbf90e3814713653e86af5e1d14518bc9c.tar.bz2 samba-5477e1cbf90e3814713653e86af5e1d14518bc9c.zip |
s4:lib/charset: add missing prototype of talloc_strdup_upper()
metze
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/charset/charset.h | 1 |
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); |