mirror of
https://github.com/samba-team/samba.git
synced 2025-03-05 20:58:40 +03:00
s4: add talloc_strdup_upper.
Guenther
This commit is contained in:
parent
c5265ea3bf
commit
b60d612cde
@ -570,7 +570,13 @@ _PUBLIC_ char *strupper_talloc(TALLOC_CTX *ctx, const char *src)
|
||||
return strupper_talloc_n(ctx, src, src?strlen(src):0);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
talloc_strdup() a unix string to upper case.
|
||||
**/
|
||||
_PUBLIC_ char *talloc_strdup_upper(TALLOC_CTX *ctx, const char *src)
|
||||
{
|
||||
return strupper_talloc(ctx, src);
|
||||
}
|
||||
|
||||
/**
|
||||
Convert a string to lower case.
|
||||
|
Loading…
x
Reference in New Issue
Block a user