Add string duplication function (strdup)

This commit is contained in:
2025-11-08 11:02:01 +03:00
parent d559d3f66b
commit 44057e96f3
4 changed files with 36 additions and 0 deletions

View File

@@ -377,6 +377,13 @@ The optional parameter I<base> specifies the base of the number.
If successful, it returns the converted number or 0.
=head2 BH_StringDup
char *BH_StringDup(const char *string);
Creates duplicate of the I<string> (simular to strdup).
=head1 SEE ALSO
L<BH>