Index of Section 3 Manual Pages
| Interix / SUA | strxfrm.3 | Interix / SUA |
strxfrm(3) strxfrm(3)
strxfrm()
NAME
strxfrm() - transform a string under locale
SYNOPSIS
#include
size_t strxfrm (char *dst, const char *src, size_t n)
DESCRIPTION
The strxfrm(3) function transforms a string, src, to the current locale
and stores at most n bytes of it in dst. The transformed string will still
compare properly
This function is a subset of strcoll(3)'s functionality, and is primarily
a tool for efficient comparisons. When many comparisons must be made,
using strxfrm(3) and strcmp(3) can be faster than using strcoll(3).
In the C and POSIX locales, it is nearly identical to strncmp(3), but the
return value is different.
RETURN VALUE
strxfrm(3) returns the length of the transformed string.
SEE ALSO
memcmp(3)
strcasecmp(3)
strcmp(3)
strcoll(3)
USAGE NOTES
The strxfrm function is thread safe.
The strxfrm function is not async-signal safe.