strxfrm - Returns the length of the transformed string in C

  #include <string.h>
  #include <stdio.h>

  int main(void)
  {
    char *s1 = "asdfasdfasdf";

    char *s2 = "asdfasdfasdf";
   
    strxfrm(s1, s2, 10);
  }