aboutsummaryrefslogtreecommitdiff
path: root/doc/Manual/en/BH_String.pod
diff options
context:
space:
mode:
authorMikhail Romanko <me@blankhex.com>2025-11-09 19:11:54 +0300
committerMikhail Romanko <me@blankhex.com>2025-11-09 19:11:54 +0300
commitaa402de368a65c4e325ed7c1c334212f2873daf9 (patch)
tree092fce58fd7a0c617de24c6750b27e10d897bd76 /doc/Manual/en/BH_String.pod
parent0fc57128fb676598757eff37392da2227991498d (diff)
downloadbhlib-aa402de368a65c4e325ed7c1c334212f2873daf9.tar.gz
Add string compare functions
Diffstat (limited to 'doc/Manual/en/BH_String.pod')
-rw-r--r--doc/Manual/en/BH_String.pod16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/Manual/en/BH_String.pod b/doc/Manual/en/BH_String.pod
index c7b027e..a88d796 100644
--- a/doc/Manual/en/BH_String.pod
+++ b/doc/Manual/en/BH_String.pod
@@ -384,6 +384,22 @@ If successful, it returns the converted number or 0.
Creates duplicate of the I<string> (simular to strdup).
+=head2 BH_StringCompare
+
+ int BH_StringCompare(const char *s1,
+ const char *s2);
+
+Compares two strings.
+
+
+=head2 BH_StringCompareCaseless
+
+ int BH_StringCompareCaseless(const char *s1,
+ const char *s2);
+
+Compares two case-insensitive strings.
+
+
=head1 SEE ALSO
L<BH>